CI #307
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| schedule: | |
| - cron: '0 5 * * MON' | |
| jobs: | |
| CI: | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| matrix: | |
| distro: ['ubuntu:latest'] | |
| backend: ["SERIAL", "OPENMP"] | |
| output: ['HDF5'] | |
| include: | |
| - distro: 'ubuntu:latest' | |
| cxx: 'g++' | |
| backend: 'SERIAL' | |
| cmake_build_type: 'Debug' | |
| output: 'SILO' | |
| - distro: 'ubuntu:latest' | |
| cxx: 'g++' | |
| backend: 'SERIAL' | |
| cmake_build_type: 'Debug' | |
| output: 'NONE' | |
| - distro: 'ubuntu:latest' | |
| cxx: 'g++' | |
| backend: 'SERIAL' | |
| cmake_build_type: 'Debug' | |
| output: 'BOTH' | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/ecp-copa/ci-containers/${{ matrix.distro }} | |
| steps: | |
| - name: Install deps | |
| run: sudo apt-get update && sudo apt-get install -y libsilo-dev | |
| - name: Checkout kokkos | |
| uses: actions/[email protected] | |
| with: | |
| repository: kokkos/kokkos | |
| ref: 4.1.00 | |
| path: kokkos | |
| - name: Build kokkos | |
| working-directory: kokkos | |
| run: | | |
| cmake -B build -DCMAKE_INSTALL_PREFIX=$HOME/kokkos -DKokkos_ENABLE_${{ matrix.backend }}=ON | |
| cmake --build build --parallel 2 | |
| cmake --install build | |
| - name: Checkout Cabana | |
| uses: actions/[email protected] | |
| with: | |
| repository: ECP-copa/Cabana | |
| # Post 0.7.0 | |
| ref: facdb9097b68b733626911d1935a946f467cf143 | |
| path: Cabana | |
| - name: Build Cabana | |
| working-directory: Cabana | |
| run: | | |
| if [[ ${{ matrix.output }} == 'HDF5' ]]; then | |
| cabana_cmake_opts+=( -DCabana_REQUIRE_HDF5=ON -DCMAKE_DISABLE_FIND_PACKAGE_SILO=ON ) | |
| elif [[ ${{ matrix.output }} == 'SILO' ]]; then | |
| cabana_cmake_opts+=( -DCabana_REQUIRE_SILO=ON -DCMAKE_DISABLE_FIND_PACKAGE_HDF5=ON ) | |
| elif [[ ${{ matrix.output }} == 'BOTH' ]]; then | |
| cabana_cmake_opts+=( -DCabana_REQUIRE_SILO=ON -DCabana_REQUIRE_HDF5=ON ) | |
| else | |
| cabana_cmake_opts+=( -DCMAKE_DISABLE_FIND_PACKAGE_SILO=ON -DCMAKE_DISABLE_FIND_PACKAGE_HDF5=ON ) | |
| fi | |
| cmake -B build \ | |
| -DCMAKE_INSTALL_PREFIX=$HOME/Cabana \ | |
| -DCMAKE_PREFIX_PATH="$HOME/kokkos" \ | |
| -DCMAKE_CXX_FLAGS="-Wall -Wextra -pedantic -Werror" \ | |
| -DCabana_REQUIRE_${{ matrix.backend }}=ON \ | |
| ${cabana_cmake_opts[@]} | |
| cmake --build build --parallel 2 | |
| cmake --install build | |
| - name: Checkout code | |
| uses: actions/[email protected] | |
| - name: Build | |
| run: | | |
| cmake -B build -DCMAKE_PREFIX_PATH="$HOME/kokkos;$HOME/Cabana" -DCMAKE_INSTALL_PREFIX=$HOME/exampm | |
| cmake --build build --parallel 2 | |
| cmake --install build | |
| - name: Test ExaMPM | |
| run: | | |
| $HOME/exampm/bin/DamBreak 0.05 2 0 0.001 0.25 100 ${{ matrix.backend }} | |
| $HOME/exampm/bin/FreeFall 0.05 2 0 0.001 0.25 100 ${{ matrix.backend }} |