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