Linux #44
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
name: Linux | |
run-name: Linux | |
on: [push] | |
jobs: | |
Kokkos-040200-OpenMPI-Threads-Debug: | |
env: | |
KOKKOS_SRC: ${{ github.workspace }}/_deps/kokkos | |
KOKKOS_BUILD: ${{ github.workspace }}/_deps/kokkos-build | |
KOKKOS_INSTALL: ${{ github.workspace }}/_deps/kokkos-install | |
COMM_SRC: ${{ github.workspace }} | |
COMM_BUILD: ${{ github.workspace }}/build | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "π The job was automatically triggered by a ${{ github.event_name }} event." | |
- run: echo "π§ This job is now running on a ${{ runner.os }} server hosted by GitHub!" | |
- run: echo "π The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Install MPI | |
run: | | |
sudo apt-get update && sudo apt-get install -y libopenmpi-dev openmpi-bin cmake | |
which mpirun | |
mpirun --version | |
which mpicxx | |
mpicxx --version | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- run: echo "π‘ The ${{ github.repository }} repository has been cloned to the runner." | |
- run: echo "π₯οΈ The workflow is now ready to test your code on the runner." | |
- name: List files in the repository | |
run: | | |
ls ${{ github.workspace }} | |
- run: echo "π This job's status is ${{ job.status }}." | |
- name: Build Kokkos | |
run: | | |
git clone https://github.com/kokkos/kokkos.git "$KOKKOS_SRC" | |
cd "$KOKKOS_SRC" && git checkout 4.2.00 | |
cmake -S "$KOKKOS_SRC" -B "$KOKKOS_BUILD" -DCMAKE_INSTALL_PREFIX="$KOKKOS_INSTALL" -DCMAKE_BUILD_TYPE=Debug -DKokkos_ENABLE_SERIAL=ON -DKokkos_ENABLE_THREADS=ON -DKokkos_ARCH_NATIVE=ON -DCMAKE_CXX_COMPILER=mpicxx | |
cmake --build "$KOKKOS_BUILD" --parallel $(nproc) -t install | |
- name: Build KokkosComm | |
run: | | |
cmake -S "$COMM_SRC" -B "$COMM_BUILD" -DKokkos_DIR="$KOKKOS_INSTALL/lib/cmake/Kokkos" -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_BUILD_TYPE=Debug | |
cmake --build "$COMM_BUILD" --parallel "$(nproc)" | |
- name: Test KokkosComm | |
run: | | |
ctest -V --test-dir "$COMM_BUILD" | |
Kokkos-040200-MPICH-Threads-Debug: | |
env: | |
KOKKOS_SRC: ${{ github.workspace }}/_deps/kokkos | |
KOKKOS_BUILD: ${{ github.workspace }}/_deps/kokkos-build | |
KOKKOS_INSTALL: ${{ github.workspace }}/_deps/kokkos-install | |
COMM_SRC: ${{ github.workspace }} | |
COMM_BUILD: ${{ github.workspace }}/build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install MPI | |
run: | | |
sudo apt-get update && sudo apt-get install -y mpich cmake | |
which mpirun | |
mpirun --version | |
which mpicxx | |
mpicxx --version | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Build Kokkos | |
run: | | |
git clone https://github.com/kokkos/kokkos.git "$KOKKOS_SRC" | |
cd "$KOKKOS_SRC" && git checkout 4.2.00 | |
cmake -S "$KOKKOS_SRC" -B "$KOKKOS_BUILD" -DCMAKE_INSTALL_PREFIX="$KOKKOS_INSTALL" -DCMAKE_BUILD_TYPE=Debug -DKokkos_ENABLE_SERIAL=ON -DKokkos_ENABLE_THREADS=ON -DKokkos_ARCH_NATIVE=ON -DCMAKE_CXX_COMPILER=mpicxx | |
cmake --build "$KOKKOS_BUILD" --parallel $(nproc) -t install | |
- name: Build KokkosComm | |
run: | | |
cmake -S "$COMM_SRC" -B "$COMM_BUILD" -DKokkos_DIR="$KOKKOS_INSTALL/lib/cmake/Kokkos" -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_BUILD_TYPE=Debug | |
cmake --build "$COMM_BUILD" --parallel "$(nproc)" | |
- name: Test KokkosComm | |
run: | | |
ctest -V --test-dir "$COMM_BUILD" |