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-
41include :
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'
83
94
105# basic tests
116
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
2326 allow_failure : true
2427
25- test:dev :
26- extends : .test:dev
28+ test:nightly :
29+ extends :
30+ - .julia:nightly
31+ - .test
2732 allow_failure : true
2833
2934
3035# special tests
3136
3237test:source:llvm8 :
33- extends : .test:source
38+ extends :
39+ - .julia:source
40+ - .test
3441 variables :
3542 CI_BUILD_ARGS : ' LLVM_VER=8.0.0 USE_BINARYBUILDER_LLVM=0'
3643
3744test:source:llvm9 :
38- extends : .test:source
45+ extends :
46+ - .julia:source
47+ - .test
3948 variables :
4049 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