fix a bug in artificial viscosity (#1605) #14
This file contains hidden or 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
| name: 🐛 linux-arm64-debug | |
| on: | |
| push: | |
| branches: [ development ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [ development ] | |
| merge_group: | |
| branches: [ development ] | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.head_ref }}-cmake-linux-arm64-debug | |
| cancel-in-progress: true | |
| env: | |
| # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
| BUILD_TYPE: Debug | |
| permissions: | |
| contents: read | |
| jobs: | |
| check_changes: | |
| uses: ./.github/workflows/check_changes.yml | |
| with: | |
| workflow_file: '.github/workflows/cmake-arm64-debug.yml' | |
| build: | |
| runs-on: ubuntu-24.04-arm | |
| needs: check_changes | |
| if: needs.check_changes.outputs.has_non_docs_changes == 'true' | |
| env: | |
| CCACHE_COMPRESS: '1' | |
| CCACHE_COMPRESSLEVEL: '10' | |
| CCACHE_MAXSIZE: 450M | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.2.2 | |
| with: | |
| submodules: true | |
| - name: Create Build Environment | |
| run: cmake -E make_directory ${{runner.workspace}}/build | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install python3-dev python3-numpy python3-matplotlib python3-pip libopenmpi-dev libhdf5-mpi-dev | |
| - name: Install ccache | |
| run: .github/workflows/dependencies/dependencies_ccache.sh | |
| - name: Set Up Cache | |
| uses: actions/cache@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v5.0.2 | |
| with: | |
| path: ~/.cache/ccache | |
| key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | |
| restore-keys: | | |
| ccache-${{ github.workflow }}-${{ github.job }}-git- | |
| - name: Install Canary | |
| run: python3 -m pip install canary-wm | |
| - name: Initialize ccache | |
| run: | | |
| ccache --version | |
| ccache -z | |
| - name: Configure CMake | |
| shell: bash | |
| working-directory: ${{runner.workspace}}/build | |
| run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DAMReX_SPACEDIM=1 | |
| - name: Build | |
| working-directory: ${{runner.workspace}}/build | |
| shell: bash | |
| run: cmake --build . --config $BUILD_TYPE --parallel 4 | |
| - name: Create test output directory | |
| run: cmake -E make_directory $GITHUB_WORKSPACE/tests | |
| - name: Test | |
| working-directory: ${{runner.workspace}}/build | |
| shell: bash | |
| run: canary run --output-on-failure --workers=4 -k 'not RadhydroPulseMG and not HydroWaveConvergence' . | |
| - name: ccache stats | |
| if: always() | |
| run: | | |
| ccache -s | |
| du -hs ~/.cache/ccache | |
| - name: Upload test output | |
| if: always() | |
| uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 | |
| with: | |
| name: test-results | |
| path: ${{github.workspace}}/tests |