Skip to content

Commit 4005dd8

Browse files
committed
ci: install openmpi
mpich is broken in ubuntu 24.04
1 parent e869288 commit 4005dd8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/cmake.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ jobs:
2727
sudo apt-get install -yq cmake
2828
cmake --version
2929
30+
# There is a known bug using MPICH ubuntu-24.04 (ubuntu-latest as of 11/10/2025)
31+
# https://bugs.launchpad.net/ubuntu/+source/mpich/+bug/2072338
32+
- name: Install mpi
33+
run: |
34+
sudo apt-get update -yq
35+
sudo apt-get install -yq openmpi-bin libopenmpi-dev
36+
3037
## Kokkos
3138
- name: Kokkos Checkout repo
3239
uses: actions/checkout@v4

0 commit comments

Comments
 (0)