Skip to content

Commit 714203f

Browse files
benegeesloede
andauthored
Move to julia 1.11 (#207)
* testing julia 1.11 * revert back to 1.9.3 for package compiler * Disable filter_stdlibs for PackageCompuler * check size of shared library * enable filter_stdlibs again * Finalize P4est mesh as well * Update .github/workflows/ci.yml Co-authored-by: Michael Schlottke-Lakemper <michael@sloede.com> * Update ci.yml * Update .github/workflows/ci.yml Co-authored-by: Michael Schlottke-Lakemper <michael@sloede.com> * coverage testing only with 1.11 * coverage only with julia 1.11 --------- Co-authored-by: Michael Schlottke-Lakemper <michael@sloede.com>
1 parent 07845ab commit 714203f

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222

2323
jobs:
2424
test:
25-
name: ${{ matrix.os }} - ${{ matrix.test_type }} - ${{ github.event_name }}
25+
name: ${{ matrix.os }} - ${{ matrix.test_type }} - Julia ${{ matrix.julia_version }} - ${{ github.event_name }}
2626
runs-on: ${{ matrix.os }}
2727
strategy:
2828
fail-fast: false
@@ -31,14 +31,20 @@ jobs:
3131
- ubuntu-latest
3232
test_type:
3333
- regular
34-
- coverage
3534
- package-compiler
3635
arch:
3736
- x64
3837
julia_version:
3938
- '1.10'
39+
- '1.11'
4040
t8code_version:
4141
- '3.0.0'
42+
include:
43+
- os: ubuntu-latest
44+
test_type: coverage
45+
arch: x64
46+
julia_version: '1.11'
47+
t8code_version: '3.0.0'
4248
env:
4349
# Necessary for HDF5 to play nice with Julia
4450
LD_PRELOAD: /lib/x86_64-linux-gnu/libcurl.so.4

LibTrixi.jl/src/api_jl.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function trixi_finalize_simulation_jl(simstate)
5252
# x-ref: https://github.com/DLR-AMR/t8code/issues/1295
5353
# x-ref: https://github.com/trixi-framework/libtrixi/pull/215#discussion_r1843676330
5454
mesh, _, _, _ = mesh_equations_solver_cache(simstate.semi)
55-
if mesh isa Trixi.T8codeMesh
55+
if mesh isa Trixi.T8codeMesh || mesh isa Trixi.P4estMesh
5656
finalize(mesh)
5757
end
5858

0 commit comments

Comments
 (0)