Skip to content

Commit dab41c7

Browse files
authored
Update to julia 1.10 (#156)
* update to julia 1.10 * check CI without LD_PRELOAD * add compatability for Trixi >= 0.6 * Revert "check CI without LD_PRELOAD" This reverts commit 08f537f. * use julia 1.9.3 for PC tests * more clever way to do it
1 parent a3ecd79 commit dab41c7

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/Documenter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/checkout@v4
3333
- uses: julia-actions/setup-julia@v1
3434
with:
35-
version: '1.9'
35+
version: '1.10'
3636
show-versioninfo: true
3737
- uses: julia-actions/julia-buildpkg@v1
3838
with:

.github/workflows/ci.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,18 @@ jobs:
3232
test_type:
3333
- regular
3434
- coverage
35-
- package-compiler
3635
arch:
3736
- x64
3837
julia_version:
39-
- '1.9'
38+
- '1.10'
4039
t8code_version:
4140
- '1.4.1'
41+
include:
42+
- os: ubuntu-latest
43+
test_type: package-compiler
44+
arch: x64
45+
julia_version: '1.9.3' # 1.9.4: missing nghttp2 symbols in libcurl
46+
t8code_version: '1.4.1'
4247
env:
4348
# Necessary for HDF5 to play nice with Julia
4449
LD_PRELOAD: /lib/x86_64-linux-gnu/libcurl.so.4
@@ -158,7 +163,7 @@ jobs:
158163
cp ../install/share/libtrixi/LibTrixi.jl/examples/libelixir_p4est2d_dgsem_euler_sedov.jl .
159164
cp ../install/share/libtrixi/LibTrixi.jl/examples/libelixir_t8code_2d_dgsem_advection_amr.jl .
160165
161-
- name: Initialize project directory
166+
- name: Initialize project directory (test_type == 'package-compiler')
162167
if: ${{ matrix.test_type == 'package-compiler' }}
163168
# Note that we set the Julia depot to `~/.julia` *ONLY* to make use of the
164169
# julia-actions/cache above (which unfortunately hardcoded the `~/.julia`
@@ -233,7 +238,7 @@ jobs:
233238
env:
234239
LIBTRIXI_DEBUG: all
235240

236-
- name: Run examples
241+
- name: Run examples (test_type == 'package-compiler')
237242
if: ${{ matrix.test_type == 'package-compiler' }}
238243
run: |
239244
cd build/examples

0 commit comments

Comments
 (0)