Skip to content

Commit de37851

Browse files
Merge pull request #2577 from lte678/fix-ci-precompile-hang
Fix hang in BuildKite CI
2 parents 9ac1862 + 6efeb3b commit de37851

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ steps:
3838
env:
3939
BUILDKITE_PLUGIN_JULIA_VERSION: "{{matrix.version}}"
4040
GROUP: "{{matrix.group}}"
41+
JULIA_NUM_THREADS: 2
4142
plugins:
4243
- JuliaCI/julia#v1
4344
- staticfloat/metahook:
@@ -49,7 +50,6 @@ steps:
4950
'
5051
- JuliaCI/julia-test#v1:
5152
coverage: false
52-
julia_args: "--threads=auto"
5353
agents:
5454
os: "linux"
5555
queue: "juliaecosystem"

test/multithreading/ode_extrapolation_tests.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Import packages
22
using OrdinaryDiffEqExtrapolation, DiffEqDevTools, Test, Random
33

4+
println("Running on $(Threads.nthreads()) thread(s).")
5+
46
# Define test problems
57
# Note that the time span in ODEProblemLibrary is given by
68
# Float64 numbers

0 commit comments

Comments
 (0)