File tree Expand file tree Collapse file tree 1 file changed +43
-21
lines changed Expand file tree Collapse file tree 1 file changed +43
-21
lines changed Original file line number Diff line number Diff line change 1
- variables :
2
- CI_IMAGE_TAG : ' plain'
3
-
4
1
include :
5
- - ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v5/test.yml'
6
- - ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v5/coverage.yml'
7
- - ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v5/documentation.yml'
2
+ - ' https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v6.yml'
8
3
9
4
10
5
# basic tests
11
6
12
- test:v1.0 :
13
- extends : .test:v1.0
14
-
15
- test:v1.1 :
16
- extends : .test:v1.1
17
-
18
- test:v1.2 :
19
- extends : .test:v1.2
20
-
21
- test:v1.3 :
22
- extends : .test:v1.3
7
+ test:1.0 :
8
+ extends :
9
+ - .julia:1.0
10
+ - .test
11
+
12
+ test:1.1 :
13
+ extends :
14
+ - .julia:1.1
15
+ - .test
16
+
17
+ test:1.2 :
18
+ extends :
19
+ - .julia:1.2
20
+ - .test
21
+
22
+ test:1.3 :
23
+ extends :
24
+ - .julia:1.3
25
+ - .test
23
26
allow_failure : true
24
27
25
- test:dev :
26
- extends : .test:dev
28
+ test:nightly :
29
+ extends :
30
+ - .julia:nightly
31
+ - .test
27
32
allow_failure : true
28
33
29
34
30
35
# special tests
31
36
32
37
test:source:llvm8 :
33
- extends : .test:source
38
+ extends :
39
+ - .julia:source
40
+ - .test
34
41
variables :
35
42
CI_BUILD_ARGS : ' LLVM_VER=8.0.0 USE_BINARYBUILDER_LLVM=0'
36
43
37
44
test:source:llvm9 :
38
- extends : .test:source
45
+ extends :
46
+ - .julia:source
47
+ - .test
39
48
variables :
40
49
CI_BUILD_ARGS : ' LLVM_VER=9.0.0rc6 USE_BINARYBUILDER_LLVM=0'
50
+
51
+
52
+ # other tasks
53
+
54
+ coverage :
55
+ extends :
56
+ - .julia:1.2
57
+ - .coverage
58
+
59
+ documentation :
60
+ extends :
61
+ - .julia:1.2
62
+ - .documentation
You can’t perform that action at this time.
0 commit comments