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

CI with Julia v1.11 #3836

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
bef3bd6
manifest for julia v1.11
navidcy Oct 8, 2024
d4d987e
ci with julia v1.11
navidcy Oct 8, 2024
a0c263b
Delete Manifest-v1.11.toml
navidcy Oct 9, 2024
434af59
Update pipeline.yml
navidcy Oct 9, 2024
5a8884c
Merge branch 'main' into ncc/julia-1.11
navidcy Oct 9, 2024
8201969
Merge branch 'main' into ncc/julia-1.11
navidcy Oct 11, 2024
652cebc
Merge branch 'main' into ncc/julia-1.11
navidcy Oct 13, 2024
d738ddf
julia v1.11.1
navidcy Oct 18, 2024
8805a19
Merge branch 'main' into ncc/julia-1.11
navidcy Oct 18, 2024
25eb43e
Merge branch 'main' into ncc/julia-1.11
navidcy Oct 25, 2024
d5d2f35
update compat
navidcy Oct 25, 2024
42a5ded
Merge branch 'main' into ncc/julia-1.11
navidcy Oct 26, 2024
f6ef4c4
Merge branch 'main' into ncc/julia-1.11
navidcy Oct 31, 2024
015f84b
try without internal tide example
navidcy Oct 31, 2024
9f07975
Merge branch 'main' into ncc/julia-1.11
navidcy Nov 9, 2024
1143fea
Merge branch 'main' into ncc/julia-1.11
glwagner Nov 22, 2024
78cc31b
use julia 1.11.2
navidcy Dec 2, 2024
2155a2e
merge main
navidcy Dec 2, 2024
1b3cafd
merge main
navidcy Dec 2, 2024
9d40bcf
Merge branch 'main' into ncc/julia-1.11
navidcy Dec 9, 2024
0c25973
Update make.jl
navidcy Dec 9, 2024
e5661e8
Merge branch 'main' into ncc/julia-1.11
navidcy Dec 26, 2024
0fa1949
Update index.md
navidcy Dec 26, 2024
012c0b0
Merge branch 'main' into ncc/julia-1.11
glwagner Jan 6, 2025
5529914
Merge branch 'main' into ncc/julia-1.11
glwagner Jan 7, 2025
bb5018a
Merge branch 'main' into ncc/julia-1.11
glwagner Jan 8, 2025
ac32b14
Enable verbose errors for enzyme tests
glwagner Jan 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
env:
JULIA_VERSION: "1.10.6"
JULIA_MINOR_VERSION: "1.10"
JULIA_VERSION: "1.11.2"
JULIA_MINOR_VERSION: "1.11"
SVERDRUP_HOME: "/data5/glwagner"
TARTARUS_HOME: "/storage5/buildkite-agent"
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager
Expand Down
4 changes: 2 additions & 2 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ TimesDates = "bdfc003b-8df8-5c39-adcd-3a9087f5df4a"
CairoMakie = "0.11, 0.12"
Documenter = "1"
DocumenterCitations = "1"
JLD2 = "0.4, 0,5"
JLD2 = "0.4, 0.5"
Literate = "2.9"
NCDatasets = "0.12.10, 0.13.1, 0.14"
Polynomials = "4"
Rotations = "1.0"
SeawaterPolynomials = "0.3.4"
SeawaterPolynomials = "0.3.5"
StructArrays = "0.4, 0.5, 0.6"
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ julia> Pkg.add("Oceananigans")
Oceananigans requires Julia 1.9 or later.

!!! info "Tested Julia versions"
Oceananigans is currently tested on Julia 1.10.
Oceananigans is currently tested on Julia 1.11.

If you're [new to Julia](https://docs.julialang.org/en/v1/manual/getting-started/) and its [wonderful `Pkg` manager](https://docs.julialang.org/en/v1/stdlib/Pkg/), the [Oceananigans wiki](https://github.com/CliMA/Oceananigans.jl/wiki) provides [more detailed installation instructions](https://github.com/CliMA/Oceananigans.jl/wiki/Installation-and-getting-started-with-Oceananigans).

Expand Down
1 change: 1 addition & 0 deletions test/test_enzyme.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ include("dependencies_for_runtests.jl")
# Required presently
Enzyme.API.looseTypeAnalysis!(true)
Enzyme.API.maxtypeoffset!(2032)
Enzyme.Compiler.VERBOSE_ERRORS[] = true

# OceananigansLogger doesn't work here -- not sure why
Logging.global_logger(TestLogger())
Expand Down
Loading