Skip to content

Implement standard MPI ABI #2

Implement standard MPI ABI

Implement standard MPI ABI #2

Workflow file for this run

name: CI-mpiwrapper
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
BUILD_TYPE: Debug
jobs:
build:
strategy:
matrix:
os: [ubuntu-22.04]
mpi: [MPICH, OpenMPI]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Install ${{matrix.mpi}}
run: |
case "${{matrix.mpi}}" in
MPICH) packages=libmpich-dev;;
OpenMPI) packages=libopenmpi-dev;;
esac
sudo apt-get update
sudo apt-get install $packages
- name: Configure
run: |
cd mpiwrapper
cmake \
-B ${{github.workspace}}/build \
-DCMAKE_C_COMPILER=mpicc \
-DCMAKE_INSTALL_PREFIX=$HOME/mpiwrapper-${{matrix.mpi}}
- name: Build
run: cd mpiwrapper && cmake --build ${{github.workspace}}/build --verbose
# - name: Test
# working-directory: ${{github.workspace}}/build
# run: ctest -C ${{env.BUILD_TYPE}}
- name: Install
run: cd mpiwrapper && cmake --install ${{github.workspace}}/build