We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe1bec5 commit 8e1a894Copy full SHA for 8e1a894
.buildkite/pipeline.yml
@@ -30,8 +30,6 @@ steps:
30
matrix:
31
setup:
32
version:
33
- - "1.8"
34
- - "1.9"
35
- "1.10"
36
- "1.11"
37
plugins:
@@ -42,8 +40,12 @@ steps:
42
40
command: |
43
41
julia -e 'println("--- :julia: Instantiating project")
44
using Pkg
45
- Pkg.develop(; path=pwd())
46
- Pkg.add(["CUDA", "Enzyme"])' || exit 3
+ try
+ Pkg.develop([PackageSpec(; path=pwd()), PackageSpec("Enzyme"), PackageSpec("CUDA")])
+ catch err
+ Pkg.develop(; path=pwd())
47
+ Pkg.add(["CUDA", "Enzyme"])
48
+ end' || exit 3
49
50
julia -e 'println("+++ :julia: Running tests")
51
using CUDA
0 commit comments