-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci-internal.yml
208 lines (174 loc) · 4.72 KB
/
.gitlab-ci-internal.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
stages:
- build
variables:
FULL_BUILD:
value: "0"
description: "Enable full build with various cpompilers."
.base_template:
stage: build
interruptible: true
cache:
paths:
- ext/ccache
key: $CI_JOB_NAME
when: always
variables:
CCACHE_DIR: "${CI_PROJECT_DIR}/ext/ccache"
CCACHE_MAXSIZE: 500M
rules:
- if: '$CI_PIPELINE_SOURCE == "web"'
- if: '$CI_PIPELINE_SOURCE == "schedule"'
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
tags:
- docker
.build_only_template:
extends: .base_template
script:
- make disable-lto=1 all
.build_only_template_full:
extends: .build_only_template
rules:
- if: '$FULL_BUILD == "1"'
.build_test_template:
extends: .base_template
variables:
CTEST_OUTPUT_ON_FAILURE: 1
script:
- make disable-lto=1 all
- make disable-lto=1 test
.build_only_ubuntu2004_mingw_template:
extends: .build_only_template_full
script:
- make toolchainfile=cmake/toolchains/x86_64-w64-mingw32-gcc-posix-ubuntu2004.cmake disable-lto=1 all
build_gcc5_ubuntu1804:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_1804_full:latest
variables:
CC: gcc-5
CXX: g++-5
build_gcc6_ubuntu1804:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_1804_full:latest
variables:
CC: gcc-6
CXX: g++-6
build_gcc7_ubuntu2004:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
variables:
CC: gcc-7
CXX: g++-7
build_gcc8_ubuntu2004:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
variables:
CC: gcc-8
CXX: g++-8
build_gcc9_ubuntu2004:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
variables:
CC: gcc-9
CXX: g++-9
build_gcc10_ubuntu2004:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
variables:
CC: gcc-10
CXX: g++-10
build_gcc11_ubuntu2204:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2204_full:latest
variables:
CC: gcc-11
CXX: g++-11
build_gcc12_ubuntu2204:
extends: .build_only_template
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2204_full:latest
variables:
CC: gcc-12
CXX: g++-12
build_clang7_ubuntu2004:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
variables:
CC: clang-7
CXX: clang++-7
build_clang8_ubuntu2004:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
variables:
CC: clang-8
CXX: clang++-8
build_clang9_ubuntu2004:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
variables:
CC: clang-9
CXX: clang++-9
build_clang10_ubuntu2004:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
variables:
CC: clang-10
CXX: clang++-10
build_clang11_ubuntu2204:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2204_full:latest
variables:
CC: clang-11
CXX: clang++-11
build_clang12_ubuntu2204:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2204_full:latest
variables:
CC: clang-12
CXX: clang++-12
build_clang13_ubuntu2204:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2204_full:latest
variables:
CC: clang-13
CXX: clang++-13
build_clang14_ubuntu2204:
extends: .build_only_template_full
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2204_full:latest
variables:
CC: clang-14
CXX: clang++-14
build_mingw_ubuntu2004:
extends: .build_only_ubuntu2004_mingw_template
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
build_vc191x:
extends: .build_only_template
tags:
- vc191x
build_vc192x:
extends: .build_only_template
tags:
- vc192x
test_ubuntu1804:
extends: .build_test_template
image: $CI_REGISTRY/pub/dockerimages/ubuntu_1804_full:latest
test_ubuntu2004:
extends: .build_test_template
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2004_full:latest
test_ubuntu2204:
extends: .build_test_template
image: $CI_REGISTRY/pub/dockerimages/ubuntu_2204_full:latest
test_vc191x:
extends: .build_test_template
tags:
- vc191x
test_vc192x:
extends: .build_test_template
tags:
- vc192x
test_macos-x86_64:
extends: .build_test_template
tags:
- macos-x86_64
test_macos-arm:
extends: .build_test_template
tags:
- macos-arm