Skip to content

Commit

Permalink
Merge pull request #75 from m3g/testing_with_julia
Browse files Browse the repository at this point in the history
try to install juliaup only if not installed
  • Loading branch information
lmiq authored Jul 12, 2024
2 parents a228272 + a9dbbef commit 2b24863
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion testing/test.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/bin/bash
#
# Install Julia
curl -fsSL https://install.julialang.org | sh
if [[ $(which juliaup) ]]; then
echo "juliaup found"
else
curl -fsSL https://install.julialang.org | sh
fi
# Run the tests
julia runtests.jl ./input_files/water_box.inp \
./input_files/ieee_signaling.inp \
Expand Down

0 comments on commit 2b24863

Please sign in to comment.