Add METIS splitter/balancer #415
Workflow file for this run
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: CMake test matrix | ||
| on: | ||
| push: | ||
| branches: [ develop ] | ||
| pull_request: | ||
| branches: [ develop ] | ||
| jobs: | ||
| build: | ||
| # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | ||
| runs-on: ubuntu-22.04 | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| compiler: | ||
| - { name: GNU, CC: gcc-10, CXX: g++-10 } | ||
| - { name: LLVM, CC: clang, CXX: clang++ } | ||
| build_type: [Debug, Release] | ||
| no_mpi: [OFF, ON] | ||
| metis: [OFF, ON] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| submodules: recursive | ||
| - name: install mpich and gcc | ||
| run: | | ||
| sudo apt update | ||
| sudo apt install gcc-10 g++-10 mpich | ||
| - name: install metis | ||
| if: matrix.metis == "ON" | ||
|
Check failure on line 31 in .github/workflows/cmake.yml
|
||
| run: sudo apt install libmetis-dev | ||
| - name: Configure CMake | ||
| env: | ||
| MPICH_CXX: ${{matrix.compiler.CXX}} | ||
| MPICH_CC: ${{matrix.compiler.CC}} | ||
| run: cmake -S ${{github.workspace}} -B ${{github.workspace}}/build -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_C_COMPILER=mpicc -DCMAKE_VERBOSE_MAKEFILE=ON -DMESHES=${{github.workspace}}/pumi-meshes -DIS_TESTING=ON -DSCOREC_CXX_WARNINGS=ON -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_INSTALL_PREFIX=${{github.workspace}}/build/install -DSCOREC_NO_MPI=${{matrix.no_mpi}} -DENABLE_METIS=${{matrix.metis}} | ||
| - name: Build | ||
| env: | ||
| MPICH_CXX: ${{matrix.compiler.CXX}} | ||
| MPICH_CC: ${{matrix.compiler.CC}} | ||
| run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} -j --target install | ||
| - name: Test | ||
| env: | ||
| MPICH_CXX: ${{matrix.compiler.CXX}} | ||
| MPICH_CC: ${{matrix.compiler.CC}} | ||
| working-directory: ${{github.workspace}}/build | ||
| run: ctest --output-on-failure -C ${{matrix.build_type}} | ||
| - name: Build User Project | ||
| # only need to test with a single build config if the installed cmake config files work | ||
| if: matrix.compiler.name == 'GNU' && matrix.build_type == 'Release' | ||
| env: | ||
| MPICH_CXX: ${{matrix.compiler.CXX}} | ||
| MPICH_CC: ${{matrix.compiler.CC}} | ||
| run: | | ||
| cmake -S ${{github.workspace}}/doc -B ${{github.workspace}}/buildExample -DCMAKE_CXX_COMPILER=mpicxx -DSCOREC_PREFIX=${{github.workspace}}/build/install | ||
| cmake --build ${{github.workspace}}/buildExample | ||
| - name: Build MPI-NoMPI Example | ||
| # Test if a SCOREC_NO_MPI build works with MPI applications. | ||
| if: >- | ||
| matrix.compiler.name == 'GNU' && matrix.build_type == 'Release' && | ||
| matrix.no_mpi == 'ON' | ||
| env: | ||
| MPICH_CXX: ${{matrix.compiler.CXX}} | ||
| MPICH_CC: ${{matrix.compiler.CC}} | ||
| run: > | ||
| cmake -S ${{github.workspace}}/example/mpi-nompi | ||
| -B ${{github.workspace}}/example/mpi-nompi/build | ||
| -DCMAKE_CXX_COMPILER=mpicxx | ||
| -DSCOREC_PREFIX=${{github.workspace}}/build/install ; | ||
| cmake --build ${{github.workspace}}/example/mpi-nompi/build ; | ||
| ctest --test-dir ${{github.workspace}}/example/mpi-nompi/build | ||
| --output-on-failure | ||