From f903b841456c382618c987bd663532bb198fe8bb Mon Sep 17 00:00:00 2001 From: Alexis Montoison Date: Fri, 24 Mar 2023 14:24:23 -0400 Subject: [PATCH] Update .buildkite again --- .buildkite/pipeline.yml | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 6e28f623d..3c8a8420e 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -8,13 +8,15 @@ steps: cuda: "*" command: | julia --color=yes --project -e ' - using Pkg - Pkg.add("CUDA") - Pkg.add("LinearOperators") - Pkg.instantiate() - using CUDA - CUDA.set_runtime_version!(v"11.8") - include("test/gpu/nvidia.jl")' + using Pkg + Pkg.add("CUDA") + Pkg.add("LinearOperators") + Pkg.instantiate() + using CUDA + CUDA.set_runtime_version!(v"11.8")' + + julia --color=yes --project -e ' + include("test/gpu/nvidia.jl")' timeout_in_minutes: 30 # - label: "AMD GPUs -- AMDGPU.jl" @@ -31,9 +33,9 @@ steps: # command: | # julia --color=yes --project -e ' # using Pkg - # Pkg.add("AMDGPU") - # Pkg.instantiate() - # include("test/gpu/amd.jl")' + # Pkg.add("AMDGPU") + # Pkg.instantiate() + # include("test/gpu/amd.jl")' # timeout_in_minutes: 30 - label: "Intel GPUs -- oneAPI.jl" @@ -45,10 +47,10 @@ steps: intel: "*" command: | julia --color=yes --project -e ' - using Pkg - Pkg.add("oneAPI") - Pkg.instantiate() - include("test/gpu/intel.jl")' + using Pkg + Pkg.add("oneAPI") + Pkg.instantiate() + include("test/gpu/intel.jl")' timeout_in_minutes: 30 - label: "Apple M1 GPUs -- Metal.jl" @@ -61,8 +63,8 @@ steps: arch: "aarch64" command: | julia --color=yes --project -e ' - using Pkg - Pkg.add("Metal") - Pkg.instantiate() - include("test/gpu/metal.jl")' + using Pkg + Pkg.add("Metal") + Pkg.instantiate() + include("test/gpu/metal.jl")' timeout_in_minutes: 30