Skip to content

Commit

Permalink
Fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Nov 26, 2024
1 parent 2ae783b commit 9c10a5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand All @@ -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

0 comments on commit 9c10a5c

Please sign in to comment.