Skip to content

Commit 3062d60

Browse files
committed
fixup! bump MPIWrapper in tests
1 parent 2fe0d94 commit 3062d60

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/UnitTests.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,8 @@ jobs:
388388
# We don't need to test all combinations
389389
# - "1.7"
390390
# - "nightly"
391+
MPIWrapper:
392+
- "2.7.0"
391393

392394
fail-fast: false
393395

@@ -413,12 +415,14 @@ jobs:
413415

414416
- name: Build MPIwrapper
415417
run: |
416-
wget https://github.com/eschnett/MPIwrapper/archive/refs/tags/v2.7.0.tar.gz
417-
tar xzf v2.2.1.tar.gz
418+
wget https://github.com/eschnett/MPIwrapper/archive/refs/tags/v${MPIWrapper}.tar.gz
419+
tar xzf v${MPIWrapper}.tar.gz
418420
cd MPIwrapper-*
419421
cmake -DMPIEXEC_EXECUTABLE=mpiexec -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr/local .
420422
cmake --build .
421423
sudo cmake --install .
424+
env:
425+
MPIWrapper: ${{matrix.MPIWrapper}}
422426

423427
- uses: julia-actions/setup-julia@latest
424428
with:
@@ -453,6 +457,8 @@ jobs:
453457
# We don't need to test all combinations
454458
# - "1.7"
455459
# - "nightly"
460+
MPIWrapper:
461+
- "2.7.0"
456462

457463
fail-fast: false
458464

@@ -497,8 +503,8 @@ jobs:
497503
- name: Build MPIwrapper
498504
run: |
499505
source ${HOME}/intel/compilers_and_libraries/linux/mpi/intel64/bin/mpivars.sh release
500-
wget https://github.com/eschnett/MPIwrapper/archive/refs/tags/v2.7.0.tar.gz
501-
tar xzf v2.2.1.tar.gz
506+
wget https://github.com/eschnett/MPIwrapper/archive/refs/tags/v${MPIWrapper}.tar.gz
507+
tar xzf v${MPIWrapper}.tar.gz
502508
cd MPIwrapper-*
503509
cmake \
504510
-DMPIEXEC_EXECUTABLE=mpiexec \
@@ -507,6 +513,8 @@ jobs:
507513
.
508514
cmake --build .
509515
sudo cmake --install .
516+
env:
517+
MPIWrapper: ${{matrix.MPIWrapper}}
510518

511519
- uses: julia-actions/setup-julia@latest
512520
with:

0 commit comments

Comments
 (0)