We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c75b56f commit dd7ad79Copy full SHA for dd7ad79
.buildkite/pipeline.yml
@@ -437,6 +437,7 @@ steps:
437
build.message !~ /\[only/ && !build.pull_request.draft &&
438
build.message !~ /\[skip benchmarks\]/
439
timeout_in_minutes: 30
440
+ soft_fail: true
441
442
env:
443
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: "eager" # OK to downloading JLLs from GitHub
test/core/initialization.jl
@@ -185,7 +185,7 @@ end
185
186
## allocations
187
188
-let broken = VERSION == v"1.11.3" && Base.JLOptions().code_coverage != 0
+let broken = VERSION >= v"1.11.3" && Base.JLOptions().code_coverage != 0
189
@test @allocated(current_context()) == 0 broken=broken
190
@test @allocated(context()) == 0 broken=broken
191
@test @allocated(stream()) == 0 broken=broken
0 commit comments