Skip to content

Commit 1e7a8df

Browse files
authored
Merge pull request #161 from maleadt/tb/ci_v6
Test new CI templates.
2 parents 899c7d0 + 13007bb commit 1e7a8df

File tree

1 file changed

+43
-21
lines changed

1 file changed

+43
-21
lines changed

.gitlab-ci.yml

Lines changed: 43 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,62 @@
1-
variables:
2-
CI_IMAGE_TAG: 'plain'
3-
41
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'
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

3237
test: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

3744
test: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

0 commit comments

Comments
 (0)