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

Move to julia 1.11 #207

Merged
merged 15 commits into from
Nov 26, 2024
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
test:
name: ${{ matrix.os }} - ${{ matrix.test_type }} - ${{ github.event_name }}
name: ${{ matrix.os }} - ${{ matrix.test_type }} - Julia ${{ matrix.julia_version }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand All @@ -31,14 +31,20 @@ jobs:
- ubuntu-latest
test_type:
- regular
- coverage
- package-compiler
arch:
- x64
julia_version:
- '1.10'
- '1.11'
t8code_version:
- '3.0.0'
include:
- os: ubuntu-latest
test_type: coverage
arch: x64
julia_version: '1.11'
t8code_version: '3.0.0'
env:
# Necessary for HDF5 to play nice with Julia
LD_PRELOAD: /lib/x86_64-linux-gnu/libcurl.so.4
Expand Down
2 changes: 1 addition & 1 deletion LibTrixi.jl/src/api_jl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function trixi_finalize_simulation_jl(simstate)
# x-ref: https://github.com/DLR-AMR/t8code/issues/1295
# x-ref: https://github.com/trixi-framework/libtrixi/pull/215#discussion_r1843676330
mesh, _, _, _ = mesh_equations_solver_cache(simstate.semi)
if mesh isa Trixi.T8codeMesh
if mesh isa Trixi.T8codeMesh || mesh isa Trixi.P4estMesh
finalize(mesh)
end

Expand Down
Loading