Skip to content

Commit

Permalink
fix path for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsch committed Nov 24, 2024
1 parent 86227e9 commit fe57466
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
# with Pkg.develop(path="."). using Rimu, KrylovKit, StaticArrays at the end
# ensures everything is precompiled before the MPI job starts.
julia --color=yes --project=test -e "using Pkg; Pkg.instantiate(); Pkg.develop(path=\".\"); Pkg.add(\"MPI\"); Pkg.build(); using MPI; MPI.install_mpiexecjl(); using Rimu, KrylovKit, StaticArrays"
export PATH=$PATH:/home/runner/.julia/bin
export PATH=$PATH:/home/runner/.julia/bin # for linux
export PATH=$PATH:/Users/runner/.julia/bin # for macos
mpiexecjl -n 2 julia --code-coverage=user --depwarn=yes --project=test test/mpi_runtests.jl
Expand Down

0 comments on commit fe57466

Please sign in to comment.