Skip to content

Commit dd7ad79

Browse files
authored
Loosen VERSION check for sketchy test (#2688)
1 parent c75b56f commit dd7ad79

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ steps:
437437
build.message !~ /\[only/ && !build.pull_request.draft &&
438438
build.message !~ /\[skip benchmarks\]/
439439
timeout_in_minutes: 30
440+
soft_fail: true
440441

441442
env:
442443
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: "eager" # OK to downloading JLLs from GitHub

test/core/initialization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ end
185185

186186
## allocations
187187

188-
let broken = VERSION == v"1.11.3" && Base.JLOptions().code_coverage != 0
188+
let broken = VERSION >= v"1.11.3" && Base.JLOptions().code_coverage != 0
189189
@test @allocated(current_context()) == 0 broken=broken
190190
@test @allocated(context()) == 0 broken=broken
191191
@test @allocated(stream()) == 0 broken=broken

0 commit comments

Comments
 (0)