Skip to content

Commit

Permalink
Debug scheduler test
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesWrigley committed Apr 8, 2024
1 parent 25fd1bb commit c765853
Show file tree
Hide file tree
Showing 2 changed files with 376 additions and 383 deletions.
174 changes: 87 additions & 87 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,46 +15,46 @@
arch: x86_64
num_cpus: 16
steps:
- label: Julia 1.8
timeout_in_minutes: 90
<<: *test
plugins:
- JuliaCI/julia#v1:
version: "1.8"
- JuliaCI/julia-test#v1:
julia_args: "--threads=1"
- JuliaCI/julia-coverage#v1:
codecov: true
- label: Julia 1.9
timeout_in_minutes: 90
<<: *test
plugins:
- JuliaCI/julia#v1:
version: "1.9"
- JuliaCI/julia-test#v1:
julia_args: "--threads=1"
- JuliaCI/julia-coverage#v1:
codecov: true
- label: Julia 1.10
timeout_in_minutes: 90
<<: *test
plugins:
- JuliaCI/julia#v1:
version: "1.10"
- JuliaCI/julia-test#v1:
julia_args: "--threads=1"
- JuliaCI/julia-coverage#v1:
codecov: true
- label: Julia nightly
timeout_in_minutes: 90
<<: *test
plugins:
- JuliaCI/julia#v1:
version: "1.10-nightly"
- JuliaCI/julia-test#v1:
julia_args: "--threads=1"
- JuliaCI/julia-coverage#v1:
codecov: true
# - label: Julia 1.8
# timeout_in_minutes: 90
# <<: *test
# plugins:
# - JuliaCI/julia#v1:
# version: "1.8"
# - JuliaCI/julia-test#v1:
# julia_args: "--threads=1"
# - JuliaCI/julia-coverage#v1:
# codecov: true
# - label: Julia 1.9
# timeout_in_minutes: 90
# <<: *test
# plugins:
# - JuliaCI/julia#v1:
# version: "1.9"
# - JuliaCI/julia-test#v1:
# julia_args: "--threads=1"
# - JuliaCI/julia-coverage#v1:
# codecov: true
# - label: Julia 1.10
# timeout_in_minutes: 90
# <<: *test
# plugins:
# - JuliaCI/julia#v1:
# version: "1.10"
# - JuliaCI/julia-test#v1:
# julia_args: "--threads=1"
# - JuliaCI/julia-coverage#v1:
# codecov: true
# - label: Julia nightly
# timeout_in_minutes: 90
# <<: *test
# plugins:
# - JuliaCI/julia#v1:
# version: "1.10-nightly"
# - JuliaCI/julia-test#v1:
# julia_args: "--threads=1"
# - JuliaCI/julia-coverage#v1:
# codecov: true
- label: Julia 1.8 (macOS)
timeout_in_minutes: 90
<<: *test
Expand All @@ -69,50 +69,50 @@ steps:
julia_args: "--threads=1"
- JuliaCI/julia-coverage#v1:
codecov: true
- label: Julia 1.8 - TimespanLogging
timeout_in_minutes: 20
<<: *test
plugins:
- JuliaCI/julia#v1:
version: "1.8"
- JuliaCI/julia-coverage#v1:
codecov: true
command: "julia --project -e 'using Pkg; Pkg.instantiate(); Pkg.develop(;path=\"lib/TimespanLogging\"); Pkg.test(\"TimespanLogging\")'"
- label: Julia 1.8 - DaggerWebDash
timeout_in_minutes: 20
<<: *test
plugins:
- JuliaCI/julia#v1:
version: "1.8"
- JuliaCI/julia-coverage#v1:
codecov: true
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\")'"
- label: Benchmarks
timeout_in_minutes: 120
<<: *bench
plugins:
- JuliaCI/julia#v1:
version: "1.8"
- JuliaCI/julia-test#v1:
run_tests: false
command: "julia -e 'using Pkg; Pkg.add(\"BenchmarkTools\"); Pkg.develop(;path=pwd())'; JULIA_PROJECT=\"$PWD\" julia --project benchmarks/benchmark.jl"
env:
JULIA_NUM_THREADS: "4"
BENCHMARK: "nmf:raw,dagger"
BENCHMARK_PROCS: "4:4"
BENCHMARK_SCALE: "5:5:50"
artifacts:
- benchmarks/result*
- label: DTables.jl stability test
timeout_in_minutes: 20
plugins:
- JuliaCI/julia#v1:
version: "1.8"
env:
JULIA_NUM_THREADS: "4"
agents:
queue: "juliaecosystem"
sandbox_capable: "true"
os: linux
arch: x86_64
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()'"
# - label: Julia 1.8 - TimespanLogging
# timeout_in_minutes: 20
# <<: *test
# plugins:
# - JuliaCI/julia#v1:
# version: "1.8"
# - JuliaCI/julia-coverage#v1:
# codecov: true
# command: "julia --project -e 'using Pkg; Pkg.instantiate(); Pkg.develop(;path=\"lib/TimespanLogging\"); Pkg.test(\"TimespanLogging\")'"
# - label: Julia 1.8 - DaggerWebDash
# timeout_in_minutes: 20
# <<: *test
# plugins:
# - JuliaCI/julia#v1:
# version: "1.8"
# - JuliaCI/julia-coverage#v1:
# codecov: true
# 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\")'"
# - label: Benchmarks
# timeout_in_minutes: 120
# <<: *bench
# plugins:
# - JuliaCI/julia#v1:
# version: "1.8"
# - JuliaCI/julia-test#v1:
# run_tests: false
# command: "julia -e 'using Pkg; Pkg.add(\"BenchmarkTools\"); Pkg.develop(;path=pwd())'; JULIA_PROJECT=\"$PWD\" julia --project benchmarks/benchmark.jl"
# env:
# JULIA_NUM_THREADS: "4"
# BENCHMARK: "nmf:raw,dagger"
# BENCHMARK_PROCS: "4:4"
# BENCHMARK_SCALE: "5:5:50"
# artifacts:
# - benchmarks/result*
# - label: DTables.jl stability test
# timeout_in_minutes: 20
# plugins:
# - JuliaCI/julia#v1:
# version: "1.8"
# env:
# JULIA_NUM_THREADS: "4"
# agents:
# queue: "juliaecosystem"
# sandbox_capable: "true"
# os: linux
# arch: x86_64
# 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()'"
Loading

0 comments on commit c765853

Please sign in to comment.