Skip to content

Commit 8e1a894

Browse files
author
William Moses
committed
Enzyme buildkite
1 parent fe1bec5 commit 8e1a894

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.buildkite/pipeline.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ steps:
3030
matrix:
3131
setup:
3232
version:
33-
- "1.8"
34-
- "1.9"
3533
- "1.10"
3634
- "1.11"
3735
plugins:
@@ -42,8 +40,12 @@ steps:
4240
command: |
4341
julia -e 'println("--- :julia: Instantiating project")
4442
using Pkg
45-
Pkg.develop(; path=pwd())
46-
Pkg.add(["CUDA", "Enzyme"])' || exit 3
43+
try
44+
Pkg.develop([PackageSpec(; path=pwd()), PackageSpec("Enzyme"), PackageSpec("CUDA")])
45+
catch err
46+
Pkg.develop(; path=pwd())
47+
Pkg.add(["CUDA", "Enzyme"])
48+
end' || exit 3
4749
4850
julia -e 'println("+++ :julia: Running tests")
4951
using CUDA

0 commit comments

Comments
 (0)