Skip to content

Commit 33518a3

Browse files
committed
buildkite: remove this before merging
1 parent b085472 commit 33518a3

File tree

1 file changed

+38
-1
lines changed

1 file changed

+38
-1
lines changed

.buildkite/pipeline.yml

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ steps:
4545
# then, test supported CUDA toolkits (installed through the artifact system)
4646
- group: "CUDA"
4747
key: "cuda"
48-
depends_on: "julia"
4948
steps:
5049
- label: "CUDA {{matrix.cuda}}"
5150
plugins:
@@ -86,6 +85,36 @@ steps:
8685
echo -e "[CUDA_Runtime_jll]\nversion = \"{{matrix.cuda}}\"" >LocalPreferences.toml
8786
echo -e "[CUDA_Driver_jll]\ncompat = \"false\"" >>LocalPreferences.toml
8887
88+
<<<<<<< HEAD
89+
=======
90+
- group: "Memory"
91+
key: "memory"
92+
steps:
93+
- label: "CuArray with {{matrix.memory}} memory"
94+
plugins:
95+
- JuliaCI/julia#v1:
96+
version: "1.10"
97+
- JuliaCI/julia-test#v1:
98+
test_args: "--quickfail core base libraries"
99+
- JuliaCI/julia-coverage#v1:
100+
dirs:
101+
- src
102+
- lib
103+
- examples
104+
agents:
105+
queue: "juliagpu"
106+
cuda: "*"
107+
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip memory\]/ && !build.pull_request.draft
108+
timeout_in_minutes: 30
109+
matrix:
110+
setup:
111+
memory:
112+
- "unified"
113+
- "host"
114+
commands: |
115+
echo -e "[CUDA]\ndefault_memory = \"{{matrix.memory}}\"" >LocalPreferences.toml
116+
117+
>>>>>>> e3cae5cc2 (buildkite: remove this before merging)
89118
- group: ":nesting_dolls: Subpackages"
90119
depends_on: "cuda"
91120
steps:
@@ -123,6 +152,7 @@ steps:
123152
using Pkg
124153
125154
println("--- :julia: Instantiating project")
155+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
126156
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do
127157
Pkg.activate(joinpath(pwd(), "lib", lowercase("{{matrix.package}}")))
128158
try
@@ -159,6 +189,7 @@ steps:
159189
julia --project -e '
160190
using Pkg
161191
192+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
162193
println("--- :julia: Instantiating project")
163194
withenv("JULIA_PKG_PRECOMPILE_AUTO" => 0) do
164195
Pkg.instantiate()
@@ -250,11 +281,15 @@ steps:
250281
run_tests: false
251282
command: |
252283
julia --project -e '
284+
using Pkg
285+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
253286
using CUDA
254287
@assert !CUDA.functional()
255288
@assert !isdefined(CUDA, :libcudart)
256289
CUDA.set_runtime_version!(v"11.6")'
257290
julia --project -e '
291+
using Pkg
292+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
258293
using CUDA
259294
@assert !CUDA.functional()
260295
@assert isdefined(CUDA, :libcudart)'
@@ -409,6 +444,7 @@ steps:
409444
julia --project -e '
410445
using Pkg
411446
447+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
412448
println("--- :julia: Instantiating project")
413449
Pkg.resolve()
414450
Pkg.instantiate()
@@ -443,6 +479,7 @@ steps:
443479
command: |
444480
julia --project -e '
445481
using Pkg
482+
Pkg.add(; url="https://github.com/leios/GPUArrays.jl/", rev="yoyoyo_rebase_time")
446483
ENV["CODESPEED_ENVIRONMENT"] = ENV["BUILDKITE_AGENT_NAME"]
447484
448485
println("--- :julia: Instantiating project")

0 commit comments

Comments
 (0)