Skip to content

Commit 1248614

Browse files
committed
trying to fix buildkite with new GPUArrays interface.
1 parent 49a3e07 commit 1248614

File tree

1 file changed

+40
-32
lines changed

1 file changed

+40
-32
lines changed

.buildkite/pipeline.yml

Lines changed: 40 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
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-
- "nightly"
31-
adjustments:
32-
- with:
33-
julia: "nightly"
34-
soft_fail: true
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+
# - "nightly"
31+
# adjustments:
32+
# - with:
33+
# julia: "nightly"
34+
# soft_fail: true
3535

3636
# then, test supported CUDA toolkits (installed through the artifact system)
3737
- group: "CUDA"
@@ -131,6 +131,7 @@ steps:
131131
using Pkg
132132
133133
println("--- :julia: Instantiating project")
134+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
134135
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do
135136
Pkg.activate(joinpath(pwd(), "lib", lowercase("{{matrix.package}}")))
136137
try
@@ -163,6 +164,7 @@ steps:
163164
julia --project -e '
164165
using Pkg
165166
167+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
166168
println("--- :julia: Instantiating project")
167169
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do
168170
Pkg.instantiate()
@@ -207,11 +209,15 @@ steps:
207209
run_tests: false
208210
command: |
209211
julia --project -e '
212+
using Pkg
213+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
210214
using CUDA
211215
@assert !CUDA.functional()
212216
@assert !isdefined(CUDA, :libcudart)
213217
CUDA.set_runtime_version!(v"11.6")'
214218
julia --project -e '
219+
using Pkg
220+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
215221
using CUDA
216222
@assert !CUDA.functional()
217223
@assert isdefined(CUDA, :libcudart)'
@@ -278,6 +284,7 @@ steps:
278284
julia --project -e '
279285
using Pkg
280286
287+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
281288
println("--- :julia: Instantiating project")
282289
Pkg.resolve()
283290
Pkg.instantiate()
@@ -310,6 +317,7 @@ steps:
310317
command: |
311318
julia --project -e '
312319
using Pkg
320+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
313321
ENV["CODESPEED_ENVIRONMENT"] = ENV["BUILDKITE_AGENT_NAME"]
314322
315323
println("--- :julia: Instantiating project")

0 commit comments

Comments
 (0)