Skip to content

Commit 6fc6dba

Browse files
Fix flaky CI
1 parent 965ee2a commit 6fc6dba

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.buildkite/pipeline.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ steps:
170170

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

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

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

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

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

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

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

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

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

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

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

267261
- label: "Convergence: IMKG254c"
268262
command: "julia --color=yes --check-bounds=yes --project=.buildkite docs/src/dev/report_gen_alg.jl --alg IMKG254c"

test/problems.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ function climacore_2Dheat_test_cts(::Type{FT}) where {FT}
499499
jacobian = ClimaCore.MatrixFields.FieldMatrix((@name(u), @name(u)) => FT(-1) * LinearAlgebra.I)
500500

501501
T_imp! = SciMLBase.ODEFunction(
502-
(Yₜ, u, _, t) -> nothing;
502+
(Yₜ, u, _, t) -> (Yₜ .= 0);
503503
jac_prototype = FieldMatrixWithSolver(jacobian, init_state),
504504
Wfact = Wfact!,
505505
tgrad = (∂Y∂t, Y, p, t) -> (∂Y∂t .= 0),

0 commit comments

Comments
 (0)