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 4981147 commit 6b54ba3Copy full SHA for 6b54ba3
.buildkite/pipeline.yml
@@ -11,10 +11,15 @@ steps:
11
- JuliaCI/julia-coverage#v1:
12
codecov: true
13
command: |
14
+ julia -e 'println("--- :julia: Developing CUDA")
15
+ using Pkg
16
+ Pkg.develop(; name="CUDA")
17
+ Pkg.develop(; name="GPUArrays")'
18
+ sed -i 's/^KernelAbstractions = ".*"/KernelAbstractions = "0.10"/' ~/.julia/dev/CUDA/Project.toml
19
+ sed -i 's/^KernelAbstractions = ".*"/KernelAbstractions = "0.10"/' ~/.julia/dev/GPUArrays/Project.toml
20
julia -e 'println("--- :julia: Instantiating project")
21
using Pkg
- Pkg.develop(; path=pwd())
- Pkg.develop(; name="CUDA")' || exit 3
22
+ Pkg.develop(; path=pwd())' || exit 3
23
24
julia -e 'println("+++ :julia: Running tests")
25
0 commit comments