Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LibTrixi.jl/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ Trixi = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb"
MPI = "0.20.13"
Pkg = "1.8"
SciMLBase = "2.33.0, 3"
Trixi = "0.16.10"
Trixi = "0.16.10, 0.17"
julia = "1.8"
2 changes: 1 addition & 1 deletion LibTrixi.jl/test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ Trixi = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb"

[compat]
OrdinaryDiffEqLowStorageRK = "1.2, 2, 3"
Trixi = "0.16.10"
Trixi = "0.16.10, 0.17"
11 changes: 11 additions & 0 deletions utils/libtrixi-init-julia
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,17 @@ using Pkg
Pkg.add([\"Preferences\", \"UUIDs\", \"MPIPreferences\", \"T8code\", \
\"P4est\", \"HDF5\", \"MPI\"])"
[ $? -eq 0 ] || die "could not install dependencies"

# Workaround for CI runners using OpenMPI version 4
# See https://github.com/trixi-framework/libtrixi/issues/237#issuecomment-2792609780
if [ "$CI" = "true" ]; then
JULIA_DEPOT_PATH="$julia_depot" JULIA_PKG_PRECOMPILE_AUTO=0 \
$julia_exec --project=. \
-e "
using Pkg
Pkg.add(name=\"OpenMPI_jll\", version=\"4\")"
[ $? -eq 0 ] || die "could not install dependencies"
fi
echo

# Set system MPI library
Expand Down
Loading