Skip to content

Commit 278f5ae

Browse files
committed
Try libopenmpi-dev on 24.04 as well
1 parent 4f004d2 commit 278f5ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
compiler: [ g++-13, g++-14, clang++-19 ]
16+
mpi: [ mpich, libopenmpi-dev ]
1617
steps:
1718
- uses: actions/checkout@v2
1819
with:
@@ -25,7 +26,7 @@ jobs:
2526
- name: Set TOOLSET
2627
run: echo ${{ matrix.compiler }} | awk '/^g/ { print "TOOLSET=gcc" } /^clang/ { print "TOOLSET=clang" }' >> $GITHUB_ENV
2728
- name: Install packages
28-
run: sudo apt install g++-13 g++-14 clang-19 mpich
29+
run: sudo apt-get update; sudo apt-get install -y g++-13 g++-14 clang-19 ${{matrix.mpi}}
2930
- name: Checkout main boost
3031
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
3132
- name: Update tools/boostdep

0 commit comments

Comments
 (0)