Skip to content

Commit 898470c

Browse files
committed
Update CI.
1 parent 46a93b4 commit 898470c

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.buildkite/pipeline.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
steps:
2-
- label: "GPU integeration with julia v1.6" # change to "v1" when 1.6 is out
2+
- label: "CUDA support"
33
plugins:
44
- JuliaCI/julia#v1:
5-
version: "1"
6-
- JuliaCI/julia-test#v1: ~
5+
version: 1.6
6+
command: |
7+
julia -e 'using Pkg;
8+
9+
println("--- :julia: Instantiating project");
10+
Pkg.develop(PackageSpec(path=pwd()));
11+
Pkg.add(PackageSpec(url="https://github.com/FluxML/FluxCUDA.jl", rev="main"));
12+
Pkg.instantiate();
13+
14+
println("+++ :julia: Running tests");
15+
Pkg.test("FluxCUDA"; coverage=true);'
716
agents:
817
queue: "juliagpu"
918
cuda: "*"
19+
if: build.message !~ /\[skip tests\]/
1020
timeout_in_minutes: 60
11-
12-
# - label: "GPU nightly"
13-
# plugins:
14-
# - JuliaCI/julia#v1:
15-
# version: "nightly"
16-
# - JuliaCI/julia-test#v1: ~
17-
# agents:
18-
# queue: "juliagpu"
19-
# cuda: "*"
20-
# timeout_in_minutes: 60

0 commit comments

Comments
 (0)