forked from deckhouse/deckhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
334 lines (297 loc) · 6.53 KB
/
.gitlab-ci.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
variables:
# Don't forget to update .gitlab-ci-simple.yml if necessary
WERF_CHANNEL: "ea"
WERF_ENV: FE
# We use stapel image from own registry due to docker hub pull amount limitation.
# To re-push stapel image from docker hub use command:
# `skopeo copy docker://flant/werf-stapel:0.6.1 docker://registry-write.deckhouse.io/flant/werf-stapel:0.6.1`
WERF_STAPEL_IMAGE_NAME: "${DECKHOUSE_REGISTRY_READ_HOST}/flant/werf-stapel"
WERF_STAPEL_IMAGE_VERSION: "0.6.1"
TEST_TIMEOUT: "15m"
DEV_REGISTRY_PATH: "${DECKHOUSE_DEV_REGISTRY_HOST}/${CI_PROJECT_PATH}"
BASE_IMAGES_REGISTRY_PATH: "registry.deckhouse.io/base_images/"
include:
- '.gitlab/ci_includes/web.yml'
- '.gitlab/ci_includes/terraform_versions.yml'
- '.gitlab/ci_includes/image_versions.yml'
- '.gitlab/ci_templates/build.yml'
- '.gitlab/ci_templates/cleanup.yml'
- '.gitlab/ci_templates/tests.yml'
- '.gitlab/ci_templates/cloud_tests.yml'
- '.gitlab/ci_templates/deploy.yml'
stages:
- build_modules_images
- build
- testing
- cloud_testing_docker
- cloud_testing_containerd
- deploy
- deploy_website
- cleanup_registry
- cleanup_builder
Build Modules Images CE:
extends: .Build Modules Images template
tags:
- werf-distributed
variables:
WERF_ENV: CE
only:
- tags
Build Modules Images EE:
extends: .Build Modules Images template
tags:
- werf-distributed
variables:
WERF_ENV: EE
only:
- tags
Build Modules Images FE:
extends: .Build Modules Images template
tags:
- werf-distributed
Go Generate:
extends: .Go Generate template
tags:
- werf-distributed
Build CE:
extends: .Build template
tags:
- werf-distributed
variables:
WERF_ENV: CE
only:
- tags
Build EE:
extends: .Build template
tags:
- werf-distributed
variables:
WERF_ENV: EE
only:
- tags
Build FE:
extends: .Build template
tags:
- werf-distributed
Tests:
extends: .Tests template
tags:
- werf-distributed
needs: &needs
- "Build FE"
- "Build Modules Images FE"
Matrix Tests:
extends: .Matrix Tests template
tags:
- werf-distributed
needs: *needs
Dhctl Tests:
extends: .Dhctl Tests template
tags:
- werf-distributed
needs: *needs
GolangCI Lint:
extends: .GolangCI Lint template
tags:
- werf-distributed
needs: *needs
OpenAPI Test Cases:
extends: .OpenAPI Test Cases template
tags:
- werf-distributed
needs: *needs
Cloud layouts Tests docker (manual):
extends: .Cloud layouts Tests template for docker
tags:
- cloud-layouts
except:
refs:
- schedules
- alpha
- beta
- early-access
- stable
- rock-solid
when: manual
needs: *needs
Cloud layouts Tests containerd (manual):
extends: .Cloud layouts Tests template for containerd
tags:
- cloud-layouts
except:
refs:
- schedules
- alpha
- beta
- early-access
- stable
- rock-solid
when: manual
needs: *needs
Cloud layouts Tests vSphere docker (manual):
extends: .Cloud layouts Tests vSphere template for docker
tags:
- cloud-layouts-vsphere
except:
refs:
- schedules
- alpha
- beta
- early-access
- stable
- rock-solid
when: manual
needs: *needs
Cloud layouts Tests vSphere containerd (manual):
extends: .Cloud layouts Tests vSphere template for containerd
tags:
- cloud-layouts-vsphere
except:
refs:
- schedules
- alpha
- beta
- early-access
- stable
- rock-solid
when: manual
needs: *needs
Cloud layouts Tests Static docker (manual):
extends: .Cloud layouts Tests Static template for docker
tags:
- cloud-layouts
except:
refs:
- schedules
- alpha
- beta
- early-access
- stable
- rock-solid
when: manual
needs: *needs
Cloud layouts Tests Static containerd (manual):
extends: .Cloud layouts Tests Static template for containerd
tags:
- cloud-layouts
except:
refs:
- schedules
- alpha
- beta
- early-access
- stable
- rock-solid
when: manual
needs: *needs
Cloud layouts Tests for containerd (scheduled):
extends: .Cloud layouts Tests template for containerd scheduled
tags:
- cloud-layouts
only:
variables:
- $CLOUD_LAYOUTS_SCHEDULE
when: always
needs: *needs
Cloud layouts Tests vSphere for containerd (scheduled):
extends: .Cloud layouts Tests vSphere template for containerd scheduled
tags:
- cloud-layouts-vsphere
only:
variables:
- $CLOUD_LAYOUTS_SCHEDULE
when: always
needs: *needs
Cloud layouts Tests Static for containerd (scheduled):
extends: .Cloud layouts Tests Static template for containerd scheduled
tags:
- cloud-layouts
only:
variables:
- $CLOUD_LAYOUTS_SCHEDULE
when: always
needs: *needs
Validators:
extends: .Go Validators template
tags:
- werf-distributed
needs: *needs
No Cyrillic Validation:
extends: .No Cyrillic Validation template
tags:
- werf-distributed
needs: []
Doc Validation:
extends: .Content Validation template
tags:
- werf-distributed
needs: []
Copyright Validation:
extends: .Copyright Validation template
tags:
- werf-distributed
needs: []
.base_deploy: &base_deploy
extends: .base_deploy_template
after_script:
- git checkout ${CI_JOB_NAME} && git reset ${CI_COMMIT_SHA}
- git push --force $(echo ${CI_REPOSITORY_URL} | sed -r "s/^(.+gitlab-ci-token:).+(\@.+)$/\1${REGISTRY_CLEANER_TOKEN}\2/") ${CI_JOB_NAME}
needs:
- "Matrix Tests"
- "Validators"
- "Tests"
- "Build CE"
- "Build EE"
- "Build FE"
- "Build Modules Images CE"
- "Build Modules Images EE"
- "Build Modules Images FE"
- "Go Generate"
tags:
- werf-distributed
dependencies:
- "Build CE"
- "Build EE"
- "Build FE"
- "Build Modules Images CE"
- "Build Modules Images EE"
- "Build Modules Images FE"
parallel:
matrix:
- WERF_ENV: CE
- WERF_ENV: EE
- WERF_ENV: FE
only:
- tags
alpha:
<<: *base_deploy
environment:
name: alpha
beta:
<<: *base_deploy
environment:
name: beta
early-access:
<<: *base_deploy
environment:
name: early-access
stable:
<<: *base_deploy
environment:
name: stable
rock-solid:
<<: *base_deploy
environment:
name: rock-solid
Cleanup registry:
extends: .Cleanup registry template
tags:
- werf-distributed
Cleanup modules registry:
extends: .Cleanup modules registry template
tags:
- werf-distributed
Cleanup modules images:
extends: .Cleanup modules images template
tags:
- werf-distributed