-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' into popiii
- Loading branch information
Showing
24 changed files
with
875 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Starter pipeline | ||
# Start with a minimal pipeline that you can customize to build and deploy your code. | ||
# Add steps that build, run tests, deploy, and more: | ||
# https://aka.ms/yaml | ||
|
||
trigger: | ||
- development | ||
|
||
pr: | ||
autoCancel: true | ||
branches: | ||
include: | ||
- development | ||
|
||
jobs: | ||
- job: BuildAndTest | ||
timeoutInMinutes: 180 # how long to run the job before automatically cancelling | ||
pool: oracle-cloud | ||
steps: | ||
- task: CMake@1 | ||
displayName: 'Configure CMake' | ||
inputs: | ||
cmakeArgs: '.. -DCMAKE_BUILD_TYPE=Release -DENABLE_HWASAN=ON -DCMAKE_CXX_FLAGS="-fPIC" -DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=lld" -DCMAKE_SHARED_LINKER_FLAGS="-fuse-ld=lld" -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DAMReX_SPACEDIM=1' | ||
|
||
- task: CMake@1 | ||
displayName: 'Build Quokka' | ||
inputs: | ||
cmakeArgs: '--build .' | ||
|
||
- task: CMake@1 | ||
displayName: 'Run CTest' | ||
inputs: | ||
cmakeArgs: '-E chdir . ctest -j 2 -T Test --output-on-failure' | ||
|
||
- task: PublishTestResults@2 | ||
inputs: | ||
testResultsFormat: cTest | ||
testResultsFiles: build/Testing/*/Test.xml | ||
testRunTitle: $(Agent.JobName) | ||
condition: succeededOrFailed() | ||
displayName: Publish test results |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: ZedThree/clang-tidy-review/[email protected].0 | ||
- uses: ZedThree/clang-tidy-review/[email protected].1 | ||
# lgtm_comment_body, max_comments, and annotations need to be set on the posting workflow in a split setup | ||
with: | ||
# adjust options as necessary | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
submodules: true | ||
fetch-depth: 0 | ||
|
||
- uses: ZedThree/[email protected].0 | ||
- uses: ZedThree/[email protected].1 | ||
id: review | ||
with: | ||
config_file: src/.clang-tidy | ||
|
@@ -27,7 +27,7 @@ jobs: | |
split_workflow: true | ||
|
||
# Uploads an artefact containing clang_fixes.json | ||
- uses: ZedThree/clang-tidy-review/[email protected].0 | ||
- uses: ZedThree/clang-tidy-review/[email protected].1 | ||
|
||
# If there are any comments, fail the check | ||
- if: steps.review.outputs.total_comments > 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
name: CodeQL | ||
|
||
on: | ||
push: | ||
branches: [ "development" ] | ||
pull_request: | ||
branches: [ "development" ] | ||
schedule: | ||
- cron: "27 3 * * 0" | ||
|
||
concurrency: | ||
group: ${{ github.ref }}-${{ github.head_ref }}-codeql | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
analyze: | ||
if: ${{ github.repository == 'quokka-astro/quokka' || github.event_name != 'schedule' }} | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ python, cpp ] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
fetch-depth: 0 | ||
|
||
- name: Install Packages (C++) | ||
if: ${{ matrix.language == 'cpp' }} | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install --yes cmake openmpi-bin libopenmpi-dev libhdf5-openmpi-dev | ||
.github/workflows/dependencies/dependencies_ccache.sh | ||
sudo ln -s /usr/local/bin/ccache /usr/local/bin/g++ | ||
- name: Set Up Cache | ||
if: ${{ matrix.language == 'cpp' }} | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cache/ccache | ||
key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | ||
restore-keys: | | ||
ccache-${{ github.workflow }}-${{ github.job }}-git- | ||
- name: Configure (C++) | ||
if: ${{ matrix.language == 'cpp' }} | ||
run: | | ||
cmake -S . -B build \ | ||
-DQUOKKA_PYTHON=OFF \ | ||
-DCMAKE_VERBOSE_MAKEFILE=ON \ | ||
-DCMAKE_CXX_COMPILER="/usr/local/bin/g++" | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
queries: +security-and-quality | ||
config-file: ./.github/workflows/codeql/codeql-config.yml | ||
|
||
- name: Build (py) | ||
uses: github/codeql-action/autobuild@v3 | ||
if: ${{ matrix.language == 'python' }} | ||
|
||
- name: Build (C++) | ||
if: ${{ matrix.language == 'cpp' }} | ||
run: | | ||
export CCACHE_COMPRESS=1 | ||
export CCACHE_COMPRESSLEVEL=10 | ||
export CCACHE_MAXSIZE=30M | ||
ccache -z | ||
cmake --build build -j 4 | ||
ccache -s | ||
du -hs ~/.cache/ccache | ||
# Make sure CodeQL has something to do | ||
touch src/main.cpp | ||
export CCACHE_DISABLE=1 | ||
cd build | ||
make -j 4 | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: "/language:${{ matrix.language }}" | ||
|
||
save_pr_number: | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Save PR number | ||
env: | ||
PR_NUMBER: ${{ github.event.number }} | ||
run: | | ||
echo $PR_NUMBER > pr_number.txt | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: pr_number | ||
path: pr_number.txt | ||
retention-days: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
query-filters: | ||
- exclude: | ||
id: | ||
- cpp/commented-out-code | ||
- cpp/complex-condition | ||
- cpp/equality-on-floats | ||
- cpp/fixme-comment | ||
- cpp/path-injection | ||
- cpp/poorly-documented-function | ||
- cpp/use-of-goto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Microphysics
updated
126 files
Submodule amrex
updated
51 files
Submodule fmt
updated
58 files
Submodule openPMD-api
updated
25 files
Submodule yaml-cpp
updated
6 files
+3 −3 | .github/workflows/build.yml | |
+1 −1 | .github/workflows/bzlmod-archive.yml | |
+23 −0 | README.md | |
+1 −1 | include/yaml-cpp/node/impl.h | |
+2 −1 | src/emitter.cpp | |
+11 −0 | test/integration/emitter_test.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.