Skip to content

Commit 9c10a5c

Browse files
committed
Fix the tests
1 parent 2ae783b commit 9c10a5c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.buildkite/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ steps:
77
queue: "juliagpu"
88
cuda: "*"
99
command: |
10-
julia --color=yes --project=test -e 'using Pkg; Pkg.add("CUDA"); Pkg.develop("."); Pkg.instantiate()'
10+
julia --color=yes --project=test -e 'using Pkg; Pkg.add("CUDA"); Pkg.develop(path="."); Pkg.instantiate()'
1111
julia --color=yes --project=test -e 'include("test/gpu.jl")'
1212
timeout_in_minutes: 30
1313

@@ -20,7 +20,7 @@ steps:
2020
os: "linux"
2121
arch: "x86_64"
2222
command: |
23-
julia --color=yes --project=test -e 'using Pkg; Pkg.add("Enzyme"); Pkg.develop("."); Pkg.instantiate()'
23+
julia --color=yes --project=test -e 'using Pkg; Pkg.add("Enzyme"); Pkg.develop(path="."); Pkg.instantiate()'
2424
julia --color=yes --project=test -e 'include("test/enzyme.jl")'
2525
timeout_in_minutes: 30
2626

@@ -33,6 +33,6 @@ steps:
3333
os: "linux"
3434
arch: "x86_64"
3535
command: |
36-
julia --color=yes --project=test -e 'using Pkg; Pkg.add("Zygote"); Pkg.develop("."); Pkg.instantiate()'
36+
julia --color=yes --project=test -e 'using Pkg; Pkg.add("Zygote"); Pkg.develop(path="."); Pkg.instantiate()'
3737
julia --color=yes --project=test -e 'include("test/zygote.jl")'
3838
timeout_in_minutes: 30

0 commit comments

Comments
 (0)