File tree Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Expand file tree Collapse file tree 2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 1
1
variables :
2
- CI_IMAGE_TAG : ' cuda '
2
+ CI_IMAGE_TAG : ' plain '
3
3
4
4
stages :
5
5
- test
@@ -36,3 +36,17 @@ coverage:
36
36
- master
37
37
- staging
38
38
- trying
39
+
40
+ cuarrays :
41
+ stage : test
42
+ image : " juliagpu/julia:v1.0-cuda"
43
+ script :
44
+ - mkdir $JULIA_DEPOT_PATH # Pkg3.jl#325
45
+ - julia -e 'using Pkg;
46
+ Pkg.develop(PackageSpec(path=pwd()));
47
+ Pkg.add(PackageSpec(name="CuArrays", rev="master"));
48
+ Pkg.test("CuArrays");'
49
+ only :
50
+ - master
51
+ - staging
52
+ - trying
Original file line number Diff line number Diff line change @@ -10,10 +10,3 @@ using GPUArrays, Test
10
10
@testset " JLArray" begin
11
11
GPUArrays. test (JLArray)
12
12
end
13
-
14
- if haskey (ENV , " GITLAB_CI" )
15
- Pkg. add (PackageSpec (name= " CuArrays" , rev= " master" ))
16
- @testset " CuArray" begin
17
- Pkg. test (" CuArrays" )
18
- end
19
- end
You can’t perform that action at this time.
0 commit comments