From 1e6459b1acf115d67e510e3674ca108758098213 Mon Sep 17 00:00:00 2001 From: Knut Andreas Meyer Date: Sun, 2 Nov 2025 11:12:43 +0100 Subject: [PATCH 1/2] Modify CI workflow to test Julia pre-release --- .github/workflows/CI.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 42b24efa..e1dfb7a1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - version: ['1.11', '1'] + version: ['1.11', '1', 'pre'] # 'lts' not supported as public is used os: ['ubuntu-latest'] include: - os: windows-latest @@ -70,3 +70,4 @@ jobs: DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} GKSwstype: '100' run: julia --project=docs --color=yes docs/make.jl + From ac7903da002b02dc1c3b6b0b8f9a54507e4ea11c Mon Sep 17 00:00:00 2001 From: Knut Andreas Date: Sun, 2 Nov 2025 11:51:55 +0100 Subject: [PATCH 2/2] Update incompressible elasticity tutorial with failed code --- docs/src/literate_tutorials/incompressible_elasticity.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/literate_tutorials/incompressible_elasticity.jl b/docs/src/literate_tutorials/incompressible_elasticity.jl index 9e8a0c37..12b5b8bf 100644 --- a/docs/src/literate_tutorials/incompressible_elasticity.jl +++ b/docs/src/literate_tutorials/incompressible_elasticity.jl @@ -112,7 +112,7 @@ function solve(;ν, ipu, ipp) u = Symmetric(K) \ f; # Solve the equation system ## Export the results - filename = "cook_" * (isa(ipu, Lagrange{2,RefTetrahedron,1}) ? "linear" : "quadratic") * + filename = "cook_" * (Ferrite.getorder(ipu) == 1 ? "linear" : "quadratic") * "_linear" VTKGridFile(filename, dh) do vtk write_solution(vtk, dh, u)