Skip to content

Implement standard MPI ABI #1

Implement standard MPI ABI

Implement standard MPI ABI #1

name: CI-mpitrampoline
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
BUILD_TYPE: Debug
jobs:
shellcheck:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: shellcheck
run: shellcheck --exclude SC2086 bin/*
build:
strategy:
matrix:
os: [ubuntu-22.04]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Configure
run: |
cmake \
-B ${{github.workspace}}/build \
-DCMAKE_INSTALL_PREFIX=$HOME/mpitrampoline
- name: Build
run: cmake --build ${{github.workspace}}/build --verbose
# - name: Test
# working-directory: ${{github.workspace}}/build
# run: ctest -C ${{env.BUILD_TYPE}}
- name: Install
run: cmake --install ${{github.workspace}}/build