Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI to Julia v1.10 #29

Merged
merged 5 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9'
- '1.10'
os:
- ubuntu-latest
- macOS-latest
Expand Down
2 changes: 1 addition & 1 deletion test/test_tree_1d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ end
4.4541473087633676e-7,
],
tspan=(0.0, 0.05),
atol=3e-10) # see https://github.com/trixi-framework/Trixi.jl/issues/1617
atol=1e-7) # see https://github.com/trixi-framework/Trixi.jl/issues/1617
# Ensure that we do not have excessive memory allocations
# (e.g., from type instabilities)
let
Expand Down
9 changes: 6 additions & 3 deletions test/test_unstructured_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ end
2.0246214978154587e-11,
1.513851228231574,
],
tspan=(0.0, 0.25))
tspan=(0.0, 0.25),
atol=1e-10)
# Ensure that we do not have excessive memory allocations
# (e.g., from type instabilities)
let
Expand Down Expand Up @@ -82,7 +83,8 @@ end
surface_flux=(FluxHydrostaticReconstruction(flux_lax_friedrichs,
hydrostatic_reconstruction_audusse_etal),
flux_nonconservative_audusse_etal),
tspan=(0.0, 0.2))
tspan=(0.0, 0.2),
atol=1e-10)
# Ensure that we do not have excessive memory allocations
# (e.g., from type instabilities)
let
Expand Down Expand Up @@ -111,7 +113,8 @@ end
flux_nonconservative_ersing_etal),
volume_flux=(flux_wintermeyer_etal,
flux_nonconservative_ersing_etal),
tspan=(0.0, 0.25))
tspan=(0.0, 0.25),
atol=1e-10)
# Ensure that we do not have excessive memory allocations
# (e.g., from type instabilities)
let
Expand Down
Loading