From c4d6a2775e2785ed109762e617cfce45679df6f9 Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Fri, 12 Jun 2026 11:20:58 +0200 Subject: [PATCH] Update Buildkite pipeline for the new JuliaGPU cluster. Switch to the per-backend queues of the new JuliaGPU cluster. Co-Authored-By: Claude Fable 5 --- .buildkite/pipeline.yml | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 4e4c70e..3e79383 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -4,8 +4,7 @@ steps: - JuliaCI/julia#v1: version: "1.10" agents: - queue: "juliagpu" - cuda: "*" + queue: "cuda" command: | julia --color=yes --project -e ' using Pkg @@ -17,22 +16,21 @@ steps: include("test/gpu/cuda.jl")' timeout_in_minutes: 30 - - label: "AMD GPUs -- MPIReco.jl" - plugins: - - JuliaCI/julia#v1: - version: "1.10" - agents: - queue: "juliagpu" - rocm: "*" - rocmgpu: "*" - command: | - julia --color=yes --project -e ' - using Pkg - Pkg.add("TestEnv") - using TestEnv - TestEnv.activate(); - Pkg.add("AMDGPU") - Pkg.instantiate() - include("test/gpu/rocm.jl")' - timeout_in_minutes: 30 - soft_fail: true + - label: "AMD GPUs -- MPIReco.jl" + plugins: + - JuliaCI/julia#v1: + version: "1.10" + agents: + queue: "rocm" + rocmgpu: "*" + command: | + julia --color=yes --project -e ' + using Pkg + Pkg.add("TestEnv") + using TestEnv + TestEnv.activate(); + Pkg.add("AMDGPU") + Pkg.instantiate() + include("test/gpu/rocm.jl")' + timeout_in_minutes: 30 + soft_fail: true