Skip to content

Commit c765853

Browse files
committed
Debug scheduler test
1 parent 25fd1bb commit c765853

File tree

2 files changed

+376
-383
lines changed

2 files changed

+376
-383
lines changed

.buildkite/pipeline.yml

Lines changed: 87 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -15,46 +15,46 @@
1515
arch: x86_64
1616
num_cpus: 16
1717
steps:
18-
- label: Julia 1.8
19-
timeout_in_minutes: 90
20-
<<: *test
21-
plugins:
22-
- JuliaCI/julia#v1:
23-
version: "1.8"
24-
- JuliaCI/julia-test#v1:
25-
julia_args: "--threads=1"
26-
- JuliaCI/julia-coverage#v1:
27-
codecov: true
28-
- label: Julia 1.9
29-
timeout_in_minutes: 90
30-
<<: *test
31-
plugins:
32-
- JuliaCI/julia#v1:
33-
version: "1.9"
34-
- JuliaCI/julia-test#v1:
35-
julia_args: "--threads=1"
36-
- JuliaCI/julia-coverage#v1:
37-
codecov: true
38-
- label: Julia 1.10
39-
timeout_in_minutes: 90
40-
<<: *test
41-
plugins:
42-
- JuliaCI/julia#v1:
43-
version: "1.10"
44-
- JuliaCI/julia-test#v1:
45-
julia_args: "--threads=1"
46-
- JuliaCI/julia-coverage#v1:
47-
codecov: true
48-
- label: Julia nightly
49-
timeout_in_minutes: 90
50-
<<: *test
51-
plugins:
52-
- JuliaCI/julia#v1:
53-
version: "1.10-nightly"
54-
- JuliaCI/julia-test#v1:
55-
julia_args: "--threads=1"
56-
- JuliaCI/julia-coverage#v1:
57-
codecov: true
18+
# - label: Julia 1.8
19+
# timeout_in_minutes: 90
20+
# <<: *test
21+
# plugins:
22+
# - JuliaCI/julia#v1:
23+
# version: "1.8"
24+
# - JuliaCI/julia-test#v1:
25+
# julia_args: "--threads=1"
26+
# - JuliaCI/julia-coverage#v1:
27+
# codecov: true
28+
# - label: Julia 1.9
29+
# timeout_in_minutes: 90
30+
# <<: *test
31+
# plugins:
32+
# - JuliaCI/julia#v1:
33+
# version: "1.9"
34+
# - JuliaCI/julia-test#v1:
35+
# julia_args: "--threads=1"
36+
# - JuliaCI/julia-coverage#v1:
37+
# codecov: true
38+
# - label: Julia 1.10
39+
# timeout_in_minutes: 90
40+
# <<: *test
41+
# plugins:
42+
# - JuliaCI/julia#v1:
43+
# version: "1.10"
44+
# - JuliaCI/julia-test#v1:
45+
# julia_args: "--threads=1"
46+
# - JuliaCI/julia-coverage#v1:
47+
# codecov: true
48+
# - label: Julia nightly
49+
# timeout_in_minutes: 90
50+
# <<: *test
51+
# plugins:
52+
# - JuliaCI/julia#v1:
53+
# version: "1.10-nightly"
54+
# - JuliaCI/julia-test#v1:
55+
# julia_args: "--threads=1"
56+
# - JuliaCI/julia-coverage#v1:
57+
# codecov: true
5858
- label: Julia 1.8 (macOS)
5959
timeout_in_minutes: 90
6060
<<: *test
@@ -69,50 +69,50 @@ steps:
6969
julia_args: "--threads=1"
7070
- JuliaCI/julia-coverage#v1:
7171
codecov: true
72-
- label: Julia 1.8 - TimespanLogging
73-
timeout_in_minutes: 20
74-
<<: *test
75-
plugins:
76-
- JuliaCI/julia#v1:
77-
version: "1.8"
78-
- JuliaCI/julia-coverage#v1:
79-
codecov: true
80-
command: "julia --project -e 'using Pkg; Pkg.instantiate(); Pkg.develop(;path=\"lib/TimespanLogging\"); Pkg.test(\"TimespanLogging\")'"
81-
- label: Julia 1.8 - DaggerWebDash
82-
timeout_in_minutes: 20
83-
<<: *test
84-
plugins:
85-
- JuliaCI/julia#v1:
86-
version: "1.8"
87-
- JuliaCI/julia-coverage#v1:
88-
codecov: true
89-
command: "julia -e 'using Pkg; Pkg.develop(;path=pwd()); Pkg.develop(;path=\"lib/TimespanLogging\"); Pkg.develop(;path=\"lib/DaggerWebDash\"); include(\"lib/DaggerWebDash/test/runtests.jl\")'"
90-
- label: Benchmarks
91-
timeout_in_minutes: 120
92-
<<: *bench
93-
plugins:
94-
- JuliaCI/julia#v1:
95-
version: "1.8"
96-
- JuliaCI/julia-test#v1:
97-
run_tests: false
98-
command: "julia -e 'using Pkg; Pkg.add(\"BenchmarkTools\"); Pkg.develop(;path=pwd())'; JULIA_PROJECT=\"$PWD\" julia --project benchmarks/benchmark.jl"
99-
env:
100-
JULIA_NUM_THREADS: "4"
101-
BENCHMARK: "nmf:raw,dagger"
102-
BENCHMARK_PROCS: "4:4"
103-
BENCHMARK_SCALE: "5:5:50"
104-
artifacts:
105-
- benchmarks/result*
106-
- label: DTables.jl stability test
107-
timeout_in_minutes: 20
108-
plugins:
109-
- JuliaCI/julia#v1:
110-
version: "1.8"
111-
env:
112-
JULIA_NUM_THREADS: "4"
113-
agents:
114-
queue: "juliaecosystem"
115-
sandbox_capable: "true"
116-
os: linux
117-
arch: x86_64
118-
command: "git clone https://github.com/JuliaParallel/DTables.jl.git ; julia -t4 -e 'using Pkg; Pkg.activate(\"DTables.jl\"); Pkg.develop(;path=\".\"); Pkg.instantiate(); Pkg.test()'"
72+
# - label: Julia 1.8 - TimespanLogging
73+
# timeout_in_minutes: 20
74+
# <<: *test
75+
# plugins:
76+
# - JuliaCI/julia#v1:
77+
# version: "1.8"
78+
# - JuliaCI/julia-coverage#v1:
79+
# codecov: true
80+
# command: "julia --project -e 'using Pkg; Pkg.instantiate(); Pkg.develop(;path=\"lib/TimespanLogging\"); Pkg.test(\"TimespanLogging\")'"
81+
# - label: Julia 1.8 - DaggerWebDash
82+
# timeout_in_minutes: 20
83+
# <<: *test
84+
# plugins:
85+
# - JuliaCI/julia#v1:
86+
# version: "1.8"
87+
# - JuliaCI/julia-coverage#v1:
88+
# codecov: true
89+
# command: "julia -e 'using Pkg; Pkg.develop(;path=pwd()); Pkg.develop(;path=\"lib/TimespanLogging\"); Pkg.develop(;path=\"lib/DaggerWebDash\"); include(\"lib/DaggerWebDash/test/runtests.jl\")'"
90+
# - label: Benchmarks
91+
# timeout_in_minutes: 120
92+
# <<: *bench
93+
# plugins:
94+
# - JuliaCI/julia#v1:
95+
# version: "1.8"
96+
# - JuliaCI/julia-test#v1:
97+
# run_tests: false
98+
# command: "julia -e 'using Pkg; Pkg.add(\"BenchmarkTools\"); Pkg.develop(;path=pwd())'; JULIA_PROJECT=\"$PWD\" julia --project benchmarks/benchmark.jl"
99+
# env:
100+
# JULIA_NUM_THREADS: "4"
101+
# BENCHMARK: "nmf:raw,dagger"
102+
# BENCHMARK_PROCS: "4:4"
103+
# BENCHMARK_SCALE: "5:5:50"
104+
# artifacts:
105+
# - benchmarks/result*
106+
# - label: DTables.jl stability test
107+
# timeout_in_minutes: 20
108+
# plugins:
109+
# - JuliaCI/julia#v1:
110+
# version: "1.8"
111+
# env:
112+
# JULIA_NUM_THREADS: "4"
113+
# agents:
114+
# queue: "juliaecosystem"
115+
# sandbox_capable: "true"
116+
# os: linux
117+
# arch: x86_64
118+
# command: "git clone https://github.com/JuliaParallel/DTables.jl.git ; julia -t4 -e 'using Pkg; Pkg.activate(\"DTables.jl\"); Pkg.develop(;path=\".\"); Pkg.instantiate(); Pkg.test()'"

0 commit comments

Comments
 (0)