remove diskgalaxy from regression #8073
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: 🔄 CheckpointRestart | |
| 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 }}-final-checkpoint-restart | |
| cancel-in-progress: true | |
| env: | |
| # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
| BUILD_TYPE: Release | |
| permissions: | |
| contents: read | |
| jobs: | |
| check_changes: | |
| uses: ./.github/workflows/check_changes.yml | |
| with: | |
| workflow_file: '.github/workflows/checkpoint-restart.yml' | |
| test: | |
| runs-on: ubuntu-latest | |
| 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 gcc-13 g++-13 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@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 | |
| with: | |
| path: ~/.cache/ccache | |
| key: ccache-${{ github.workflow }}-${{ github.job }}-git-${{ github.sha }} | |
| restore-keys: | | |
| ccache-${{ github.workflow }}-${{ github.job }}-git- | |
| - name: Initialize ccache | |
| run: | | |
| ccache --version | |
| ccache -z | |
| - name: Build PlotfileTools | |
| shell: bash | |
| working-directory: ${{github.workspace}}/extern/amrex/Tools/Plotfile | |
| run: make -j4 CC="ccache gcc-13" CXX="ccache g++-13" | |
| - name: Configure CMake | |
| shell: bash | |
| working-directory: ${{runner.workspace}}/build | |
| run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_C_COMPILER=gcc-13 -DCMAKE_CXX_COMPILER=g++-13 -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DAMReX_SPACEDIM=3 | |
| - name: Build | |
| working-directory: ${{runner.workspace}}/build | |
| shell: bash | |
| # Execute the build. You can specify a specific target with "--target <NAME>" | |
| run: cmake --build . --config $BUILD_TYPE --parallel 4 --target HydroBlast3D | |
| - name: Checkpoint/Restart Test | |
| working-directory: ${{github.workspace}}/tests | |
| shell: bash | |
| env: | |
| BUILD_DIR: ${{runner.workspace}}/build | |
| PLOTFILETOOLS_DIR: ${{github.workspace}}/extern/amrex/Tools/Plotfile | |
| run: ../inputs/checkpoint_restart_test.sh | |
| - name: ccache stats | |
| if: always() | |
| run: | | |
| ccache -s | |
| du -hs ~/.cache/ccache | |
| - name: Upload output | |
| if: always() | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: checkpoint-restart-results | |
| path: ${{github.workspace}}/tests |