Skip to content

Commit 4baf33f

Browse files
authoredJan 25, 2024
Merge pull request #366 from FourierFlows/ncc/Julia-v1-10
Run CI on Julia v1.10
2 parents 94e53a8 + 071e803 commit 4baf33f

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed
 

‎.buildkite/pipeline.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ steps:
66
- label: "🦓 Julia 1.6"
77
plugins:
88
- JuliaCI/julia#v1:
9-
version: 1.6
9+
version: '1.6'
1010
- JuliaCI/julia-test#v1: ~
1111
agents:
1212
queue: "juliagpu"
1313
cuda: "*"
1414
if: build.message !~ /\[skip tests\]/
1515
timeout_in_minutes: 60
1616

17-
- label: "🐫 Julia 1.9"
17+
- label: "🐫 Julia 1.10"
1818
plugins:
1919
- JuliaCI/julia#v1:
20-
version: 1.9
20+
version: '1.10'
2121
- JuliaCI/julia-test#v1: ~
2222
- JuliaCI/julia-coverage#v1:
2323
codecov: true

‎.github/workflows/Documenter.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: julia-actions/setup-julia@latest
1616
with:
17-
version: 1.9
17+
version: '1.10'
1818
- name: Install dependencies
1919
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2020
- name: Build and deploy

‎appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
22
matrix:
33
- julia_version: 1.6
4-
- julia_version: 1.9
4+
- julia_version: 1.10
55
- julia_version: nightly
66

77
platform:

‎docs/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
88
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
99

1010
[compat]
11-
CairoMakie = "0.10"
11+
CairoMakie = "0.11"
1212
Documenter = "1"
1313
DocumenterCitations = "1.1"
1414
Literate = "≥2.9.0"

‎docs/src/output.md

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ DocTestSetup = quote
3636
E = Diagnostic(energy, prob, freq=2, nsteps=200)
3737
filepath = "."
3838
filename = joinpath(filepath, "simplestpde.jld2")
39-
get_uh(prob) = prob.sol
4039
end
4140
```
4241

‎docs/src/problem.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ prob.clock
135135
```
136136

137137
Let's initiate our problem with, e.g., ``u(x, 0) = \cos(\pi x)``, integrate up
138-
to ``t = 4`` and compare our numerical solution with the analytic solution
138+
to ``t = 4`` and compare our numerical solution with the analytical solution
139139
``u(x, t) = e^{-\alpha t} \cos(\pi x)``.
140140

141141
```@example 2
@@ -165,7 +165,7 @@ ldiv!(prob.vars.u, grid.rfftplan, prob.sol)
165165
nothing # hide
166166
```
167167

168-
and finally, let's plot our solution and compare with the analytic solution:
168+
and finally, let's plot our solution and compare with the analytical solution:
169169

170170
```@example 2
171171
using CairoMakie, Printf

‎examples/OneDShallowWaterGeostrophicAdjustment.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ gaussian_width = 6e3
265265
gaussian_amplitude = 3.0
266266
gaussian_bump = @. gaussian_amplitude * exp( - grid.x^2 / (2*gaussian_width^2) )
267267

268-
fig = Figure(resolution = (600, 260))
268+
fig = Figure(size = (600, 260))
269269
ax = Axis(fig[1, 1];
270270
xlabel = "x [km]",
271271
ylabel = "η [m]",
@@ -287,7 +287,7 @@ noise_amplitude = 0.1 # the amplitude of the noise for η(x, t=0) (m)
287287
η_noise = noise_amplitude * Random.randn(size(grid.x))
288288
@. η_noise *= mask # mask the noise
289289

290-
fig = Figure(resolution = (600, 520))
290+
fig = Figure(size = (600, 520))
291291

292292
kwargs = (xlabel = "x [km]", limits = ((-Lx/2e3, Lx/2e3), nothing))
293293

@@ -315,7 +315,7 @@ v0 = zeros(grid.nx)
315315

316316
set_uvη!(prob, u0, v0, η0)
317317

318-
fig = Figure(resolution = (600, 260))
318+
fig = Figure(size = (600, 260))
319319

320320
ax = Axis(fig[1, 1];
321321
xlabel = "x [km]",
@@ -376,7 +376,7 @@ v = @lift irfft(file[string("snapshots/sol/", iterations[$n])][:, 2], nx)
376376

377377
toptitle = @lift "t = " * @sprintf("%.1f", file[string("snapshots/t/", iterations[$n])]/60) * " min"
378378

379-
fig = Figure(resolution = (600, 800))
379+
fig = Figure(size = (600, 800))
380380

381381
kwargs_η = (xlabel = "x [km]", limits = ((-Lx/2e3, Lx/2e3), nothing))
382382
kwargs_uv = (xlabel = "x [km]", limits = ((-Lx/2e3, Lx/2e3), (-0.3, 0.3)))
@@ -430,7 +430,7 @@ nothing # hide
430430
# The geostrophic solution should capture well the the behavior of the flow in the center
431431
# of the domain, after small-scale disturbances propagate away. Let's plot and see!
432432

433-
fig = Figure(resolution = (600, 600))
433+
fig = Figure(size = (600, 600))
434434

435435
kwargs = (xlabel = "x [km]", limits = ((-Lx/2e3, Lx/2e3), (-0.3, 0.3)))
436436

0 commit comments

Comments
 (0)
Please sign in to comment.