We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f004d2 commit 278f5aeCopy full SHA for 278f5ae
.github/workflows/ci.yml
@@ -13,6 +13,7 @@ jobs:
13
fail-fast: false
14
matrix:
15
compiler: [ g++-13, g++-14, clang++-19 ]
16
+ mpi: [ mpich, libopenmpi-dev ]
17
steps:
18
- uses: actions/checkout@v2
19
with:
@@ -25,7 +26,7 @@ jobs:
25
26
- name: Set TOOLSET
27
run: echo ${{ matrix.compiler }} | awk '/^g/ { print "TOOLSET=gcc" } /^clang/ { print "TOOLSET=clang" }' >> $GITHUB_ENV
28
- name: Install packages
- 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}}
30
- name: Checkout main boost
31
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
32
- name: Update tools/boostdep
0 commit comments