@@ -211,8 +211,8 @@ jobs:
211
211
runs-on : ubuntu-18.04 # 20.04 not supported
212
212
213
213
env :
214
- JULIA_MPI_BINARY : system
215
- JULIA_MPI_PATH : /home/runner/intel/compilers_and_libraries_2020.4.304/linux/mpi/intel64
214
+ JULIA_MPI_TEST_BINARY : system
215
+ JULIA_MPI_TEST_ABi : MPICH
216
216
217
217
steps :
218
218
- name : Checkout
@@ -256,11 +256,17 @@ jobs:
256
256
using Pkg
257
257
Pkg.develop(path="lib/MPIPreferences")
258
258
259
- # we can't use the usual actions here as we need to ensure the environment variables are set
260
- - name : " Build package"
259
+ - name : add MPIPreferences, use system
261
260
run : |
262
261
source ${HOME}/intel/compilers_and_libraries/linux/mpi/intel64/bin/mpivars.sh release
263
- julia --project -e 'using Pkg; Pkg.instantiate(verbose=true); Pkg.build(verbose=true)'
262
+ julia --color=yes --project=test -e '
263
+ using Pkg
264
+ Pkg.develop(path="lib/MPIPreferences")
265
+ using MPIPreferences
266
+ MPIPreferences.use_system_binary(export_prefs=true)
267
+ rm("test/Manifest.toml")'
268
+
269
+ # we can't use the usual actions here as we need to ensure the environment variables are set
264
270
- name : " Run tests"
265
271
run : |
266
272
source ${HOME}/intel/compilers_and_libraries/linux/mpi/intel64/bin/mpivars.sh release
@@ -308,6 +314,7 @@ jobs:
308
314
Pkg.develop(path="lib/MPIPreferences")
309
315
using MPIPreferences
310
316
MPIPreferences.use_system_binary(export_prefs=true)
317
+ rm("test/Manifest.toml")
311
318
312
319
- uses : julia-actions/julia-runtest@latest
313
320
0 commit comments