Skip to content

Commit e3cae5c

Browse files
committed
buildkite: remove this before merging
1 parent 0df024b commit e3cae5c

File tree

1 file changed

+43
-38
lines changed

1 file changed

+43
-38
lines changed

.buildkite/pipeline.yml

Lines changed: 43 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,44 @@
11
steps:
22
# first, test supported Julia versions (using local CUDA as installed on the system)
3-
- group: ":julia: Julia"
4-
key: "julia"
5-
steps:
6-
- label: "Julia {{matrix.julia}}"
7-
plugins:
8-
- JuliaCI/julia#v1:
9-
version: "{{matrix.julia}}"
10-
- JuliaCI/julia-test#v1:
11-
test_args: "--quickfail"
12-
- JuliaCI/julia-coverage#v1:
13-
dirs:
14-
- src
15-
- lib
16-
- examples
17-
agents:
18-
queue: "juliagpu"
19-
cuda: "*"
20-
commands: |
21-
echo -e "[CUDA_Runtime_jll]\nlocal = \"true\"" >LocalPreferences.toml
22-
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip julia\]/
23-
timeout_in_minutes: 60
24-
matrix:
25-
setup:
26-
julia:
27-
- "1.8"
28-
- "1.9"
29-
- "1.10"
30-
- "1.11"
31-
- "nightly"
32-
adjustments:
33-
- with:
34-
julia: "1.11"
35-
soft_fail: true
36-
- with:
37-
julia: "nightly"
38-
soft_fail: true
3+
# key: "julia"
4+
# steps:
5+
# - label: "Julia {{matrix.julia}}"
6+
# plugins:
7+
# - JuliaCI/julia#v1:
8+
# version: "{{matrix.julia}}"
9+
# - JuliaCI/julia-test#v1:
10+
# test_args: "--quickfail"
11+
# - JuliaCI/julia-coverage#v1:
12+
# dirs:
13+
# - src
14+
# - lib
15+
# - examples
16+
# agents:
17+
# queue: "juliagpu"
18+
# cuda: "*"
19+
# commands: |
20+
# echo -e "[CUDA_Runtime_jll]\nlocal = \"true\"" >LocalPreferences.toml
21+
# if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip julia\]/
22+
# timeout_in_minutes: 60
23+
# matrix:
24+
# setup:
25+
# julia:
26+
# - "1.8"
27+
# - "1.9"
28+
# - "1.10"
29+
# - "1.11"
30+
# - "nightly"
31+
# adjustments:
32+
# - with:
33+
# julia: "1.11"
34+
# soft_fail: true
35+
# - with:
36+
# julia: "nightly"
37+
# soft_fail: true
3938

4039
# then, test supported CUDA toolkits (installed through the artifact system)
4140
- group: "CUDA"
4241
key: "cuda"
43-
depends_on: "julia"
4442
steps:
4543
- label: "CUDA {{matrix.cuda}}"
4644
plugins:
@@ -77,7 +75,6 @@ steps:
7775
7876
- group: "Memory"
7977
key: "memory"
80-
depends_on: "julia"
8178
steps:
8279
- label: "CuArray with {{matrix.memory}} memory"
8380
plugins:
@@ -135,6 +132,7 @@ steps:
135132
using Pkg
136133
137134
println("--- :julia: Instantiating project")
135+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
138136
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do
139137
Pkg.activate(joinpath(pwd(), "lib", lowercase("{{matrix.package}}")))
140138
try
@@ -167,6 +165,7 @@ steps:
167165
julia --project -e '
168166
using Pkg
169167
168+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
170169
println("--- :julia: Instantiating project")
171170
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do
172171
Pkg.instantiate()
@@ -211,11 +210,15 @@ steps:
211210
run_tests: false
212211
command: |
213212
julia --project -e '
213+
using Pkg
214+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
214215
using CUDA
215216
@assert !CUDA.functional()
216217
@assert !isdefined(CUDA, :libcudart)
217218
CUDA.set_runtime_version!(v"11.6")'
218219
julia --project -e '
220+
using Pkg
221+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
219222
using CUDA
220223
@assert !CUDA.functional()
221224
@assert isdefined(CUDA, :libcudart)'
@@ -282,6 +285,7 @@ steps:
282285
julia --project -e '
283286
using Pkg
284287
288+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
285289
println("--- :julia: Instantiating project")
286290
Pkg.resolve()
287291
Pkg.instantiate()
@@ -314,6 +318,7 @@ steps:
314318
command: |
315319
julia --project -e '
316320
using Pkg
321+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
317322
ENV["CODESPEED_ENVIRONMENT"] = ENV["BUILDKITE_AGENT_NAME"]
318323
319324
println("--- :julia: Instantiating project")

0 commit comments

Comments
 (0)