Skip to content

Commit

Permalink
Fix flaky CI
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskawczynski committed Jan 18, 2025
1 parent 965ee2a commit 6fc6dba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ steps:

- label: "Convergence: SSP22Heuns"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg SSP22Heuns"
soft_fail: true

- label: "Convergence: SSP33ShuOsher"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg SSP33ShuOsher"
Expand All @@ -183,7 +182,6 @@ steps:

- label: "Convergence: ARS111"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg ARS111"
soft_fail: true

- label: "Convergence: ARS121"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg ARS121"
Expand All @@ -193,7 +191,6 @@ steps:

- label: "Convergence: ARS222"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg ARS222"
soft_fail: true

- label: "Convergence: ARS232"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg ARS232"
Expand All @@ -209,7 +206,6 @@ steps:

- label: "Convergence: SSP222"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg SSP222"
soft_fail: true

- label: "Convergence: SSP322"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg SSP322"
Expand Down Expand Up @@ -237,7 +233,6 @@ steps:

- label: "Convergence: IMKG242a"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg IMKG242a"
soft_fail: true

- label: "Convergence: IMKG242b"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg IMKG242b"
Expand All @@ -262,7 +257,6 @@ steps:

- label: "Convergence: IMKG254b"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg IMKG254b"
soft_fail: true

- label: "Convergence: IMKG254c"
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg IMKG254c"
Expand Down
2 changes: 1 addition & 1 deletion test/problems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ function climacore_2Dheat_test_cts(::Type{FT}) where {FT}
jacobian = ClimaCore.MatrixFields.FieldMatrix((@name(u), @name(u)) => FT(-1) * LinearAlgebra.I)

T_imp! = SciMLBase.ODEFunction(
(Yₜ, u, _, t) -> nothing;
(Yₜ, u, _, t) -> (Yₜ .= 0);
jac_prototype = FieldMatrixWithSolver(jacobian, init_state),
Wfact = Wfact!,
tgrad = (∂Y∂t, Y, p, t) -> (∂Y∂t .= 0),
Expand Down

0 comments on commit 6fc6dba

Please sign in to comment.