Add OpenMPI to GH action

This commit is contained in:
Evan Miller 2023-07-09 15:05:58 -04:00
parent 0f557c2ac4
commit 4a9a4748e9

View File

@ -107,6 +107,10 @@ jobs:
ubuntu-latest-cmake-mpi: ubuntu-latest-cmake-mpi:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
mpi_library: [mpich, libopenmpi-dev]
steps: steps:
- name: Clone - name: Clone
id: checkout id: checkout
@ -116,7 +120,7 @@ jobs:
id: depends id: depends
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get install build-essential mpich sudo apt-get install build-essential ${{ matrix.mpi_library }}
- name: Build - name: Build
id: cmake_build id: cmake_build