From 9c10a5c2ffc05c0d55cdf098da594f127c0a8c7c Mon Sep 17 00:00:00 2001 From: Alexis Montoison Date: Mon, 25 Nov 2024 20:46:04 -0600 Subject: [PATCH] Fix the tests --- .buildkite/pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index de2529d2..33d28bb9 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -7,7 +7,7 @@ steps: queue: "juliagpu" cuda: "*" command: | - julia --color=yes --project=test -e 'using Pkg; Pkg.add("CUDA"); Pkg.develop("."); Pkg.instantiate()' + julia --color=yes --project=test -e 'using Pkg; Pkg.add("CUDA"); Pkg.develop(path="."); Pkg.instantiate()' julia --color=yes --project=test -e 'include("test/gpu.jl")' timeout_in_minutes: 30 @@ -20,7 +20,7 @@ steps: os: "linux" arch: "x86_64" command: | - julia --color=yes --project=test -e 'using Pkg; Pkg.add("Enzyme"); Pkg.develop("."); Pkg.instantiate()' + julia --color=yes --project=test -e 'using Pkg; Pkg.add("Enzyme"); Pkg.develop(path="."); Pkg.instantiate()' julia --color=yes --project=test -e 'include("test/enzyme.jl")' timeout_in_minutes: 30 @@ -33,6 +33,6 @@ steps: os: "linux" arch: "x86_64" command: | - julia --color=yes --project=test -e 'using Pkg; Pkg.add("Zygote"); Pkg.develop("."); Pkg.instantiate()' + julia --color=yes --project=test -e 'using Pkg; Pkg.add("Zygote"); Pkg.develop(path="."); Pkg.instantiate()' julia --color=yes --project=test -e 'include("test/zygote.jl")' timeout_in_minutes: 30