From c042e6eb42d7b06b933a398ba1bbce4ed443d5e3 Mon Sep 17 00:00:00 2001 From: John Omotani Date: Wed, 18 Sep 2024 14:48:16 +0100 Subject: [PATCH] Don't export MPILIBPATH in macOS parallel test CI job Now that we use the Julia-provided MPI, this should not be necessary, and might (?) cause problems. --- .github/workflows/parallel_test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/parallel_test.yml b/.github/workflows/parallel_test.yml index 3f07a2930..405c5777e 100644 --- a/.github/workflows/parallel_test.yml +++ b/.github/workflows/parallel_test.yml @@ -55,7 +55,6 @@ jobs: version: '1.10' - uses: julia-actions/cache@v2 - run: | - export MPILIBPATH=$(find /opt/homebrew/Cellar/open-mpi/ -name libmpi.dylib) touch Project.toml julia --project -O3 --check-bounds=no -e 'import Pkg; Pkg.add(["MPI", "MPIPreferences"]); using MPIPreferences; MPIPreferences.use_jll_binary("OpenMPI_jll")' julia --project -O3 --check-bounds=no -e 'using MPI; MPI.install_mpiexecjl(; destdir=".")'