-
Notifications
You must be signed in to change notification settings - Fork 61
/
.gitlab-ci.yml
517 lines (458 loc) · 11.1 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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
stages:
- docker_image
- build
- lint
- prepare
- deploy
variables:
DOCKER_IMAGE_DEBIAN11: ${CI_REGISTRY}/${CI_PROJECT_NAMESPACE}/${CI_PROJECT_NAME}/debian11:${CI_COMMIT_REF_SLUG}
DOCKER_IMAGE_DEBIAN12: ${CI_REGISTRY}/${CI_PROJECT_NAMESPACE}/${CI_PROJECT_NAME}/debian12:${CI_COMMIT_REF_SLUG}
DOCKER_IMAGE_OL8: ${CI_REGISTRY}/${CI_PROJECT_NAMESPACE}/${CI_PROJECT_NAME}/ol8:${CI_COMMIT_REF_SLUG}
DOCKER_IMAGE_OL9: ${CI_REGISTRY}/${CI_PROJECT_NAMESPACE}/${CI_PROJECT_NAME}/ol9:${CI_COMMIT_REF_SLUG}
DOCKER_IMAGE_PREP: ${CI_REGISTRY}/${CI_PROJECT_NAMESPACE}/${CI_PROJECT_NAME}/prep:${CI_COMMIT_REF_SLUG}
GIT_SUBMODULE_STRATEGY: recursive
RPMS_DIR: rpmbuild/RPMS
.build_image:
stage: docker_image
only:
refs:
- /^devel.*/
- /^testing$/
- /^master$/
changes:
- ${DOCKER_DIR}/Dockerfile
image: docker:latest
script:
- docker login -u ${CI_REGISTRY_USER} -p ${CI_REGISTRY_PASSWORD} ${CI_REGISTRY}
- docker build -t ${DOCKER_IMAGE} ${DOCKER_DIR}
- docker push ${DOCKER_IMAGE}
build_image_debian11:
variables:
DOCKER_DIR: .gitlab-docker/debian11
DOCKER_IMAGE: ${DOCKER_IMAGE_DEBIAN11}
extends: .build_image
build_image_debian12:
variables:
DOCKER_DIR: .gitlab-docker/debian12
DOCKER_IMAGE: ${DOCKER_IMAGE_DEBIAN12}
extends: .build_image
build_image_ol8:
variables:
DOCKER_DIR: .gitlab-docker/ol8
DOCKER_IMAGE: ${DOCKER_IMAGE_OL8}
extends: .build_image
build_image_ol9:
variables:
DOCKER_DIR: .gitlab-docker/ol9
DOCKER_IMAGE: ${DOCKER_IMAGE_OL9}
extends: .build_image
build_image_prep:
variables:
DOCKER_DIR: .gitlab-docker/prep
DOCKER_IMAGE: ${DOCKER_IMAGE_PREP}
extends: .build_image
.build-ci-debian:
stage: build
only:
- /^devel.*/
- /^testing$/
- /^master$/
script:
- export HOME="${PWD}"
- mkdir -p ${HOME}/${OS_VERSION}/main/binary-amd64 # create a repo with same structure as prod
- dpkg-buildpackage -b -us -uc
- pushd .repo
- dpkg-buildpackage -b -us -uc
- popd
- mv {..,.}/ripe-atlas-*.deb ${HOME}/${OS_VERSION}/main/binary-amd64
- mv VERSION ${HOME}/${OS_VERSION}
artifacts:
name: "${CI_PROJECT_NAME}-${CI_COMMIT_REF_NAME}"
paths:
- ./${OS_VERSION}
expire_in: never
build-ci-debian11:
variables:
OS_VERSION: bullseye
extends: .build-ci-debian
image: ${DOCKER_IMAGE_DEBIAN11}
build-ci-debian12:
variables:
OS_VERSION: bookworm
extends: .build-ci-debian
image: ${DOCKER_IMAGE_DEBIAN12}
.build-ci-rhel:
stage: build
only:
- /^devel.*/
- /^testing$/
- /^master$/
variables:
REPO_RPM_PATH: ${RPMS_DIR}/noarch/*.rpm
X86_RPM_PATH: ${RPMS_DIR}/x86_64/*.rpm
REPO_GIT_SOURCE: https://${CI_REGISTRY_USER}:${CI_REGISTRY_PASSWORD}@${URL}
script:
# build define list
- REPO_GIT_TAG=""
- export REPO_GIT_TAG="${CI_COMMIT_TAG:-${CI_COMMIT_BRANCH}}"
- export HOME="${PWD}"
- mkdir -p ${HOME}/${OS_VERSION}/{noarch,x86_64} # create a repo with same structure as prod
# build repo rpm
- pushd .repo
- rpmbuild -bb --define "git_source ${REPO_GIT_SOURCE}" --define "git_tag ${REPO_GIT_TAG}" rhel/ripe-atlas-repo.spec
- popd
- cp -a ${HOME}/${REPO_RPM_PATH} ${HOME}/${OS_VERSION}/noarch
# build x86_64 rpm
- rpmbuild -bb --define "git_source ${REPO_GIT_SOURCE}" --define "git_tag ${REPO_GIT_TAG}" rhel/ripe-atlas-probe.spec
- cp -a ${HOME}/${REPO_RPM_PATH} ${HOME}/${OS_VERSION}/noarch
- cp -a ${HOME}/${X86_RPM_PATH} ${HOME}/${OS_VERSION}/x86_64
- cp ${HOME}/rpmbuild/BUILD/ripe-atlas-software-probe/VERSION ${HOME}/${OS_VERSION}
# build anchor rpm
- rpmbuild -bb --define "git_source ${REPO_GIT_SOURCE}" --define "git_tag ${REPO_GIT_TAG}" rhel/ripe-atlas-anchor.spec
- cp -a ${HOME}/${REPO_RPM_PATH} ${HOME}/${OS_VERSION}/noarch
artifacts:
name: "${CI_PROJECT_NAME}-${CI_COMMIT_REF_NAME}"
paths:
- ./${OS_VERSION}
expire_in: never
build-ci-el8:
variables:
OS_VERSION: el8
image: ${DOCKER_IMAGE_OL8}
extends: .build-ci-rhel
build-ci-el9:
variables:
OS_VERSION: el9
image: ${DOCKER_IMAGE_OL9}
extends: .build-ci-rhel
.lint-ci-rhel:
stage: lint
only:
- /^devel.*/
- /^testing$/
- /^master$/
script:
- mkdir lint_report
- for RPM in $(find ${OS_VERSION} -type f); do rpmlint $RPM > lint_report/$(echo $RPM | sed -n "s/^.*\/\s*\(\S*\)-.*$/\1.log/p") ; done || true
artifacts:
name: "${CI_PROJECT_NAME}-${CI_COMMIT_REF_NAME}-lint-report"
paths:
- ./lint_report
expire_in: never
lint-ci-el8:
needs:
- job: build-ci-el8
artifacts: true
variables:
OS_VERSION: el8
image: ${DOCKER_IMAGE_OL8}
extends: .lint-ci-rhel
lint-ci-el9:
needs:
- job: build-ci-el9
artifacts: true
variables:
OS_VERSION: el9
image: ${DOCKER_IMAGE_OL9}
extends: .lint-ci-rhel
.prepare-ci:
stage: prepare
script:
- 'eval ${PREPARE}'
- cp -a ${OS_VERSION} ${OS_VERSION}-deployable
image: ${DOCKER_IMAGE_PREP}
artifacts:
name: "${OS_VERSION}-deployable"
paths:
- ./${OS_VERSION}-deployable
expire_in: never
.prepare-ci-rhel:
variables:
OS_DISTRIBUTION: rhel
extends: .prepare-ci
.prepare-ci-debian:
variables:
OS_DISTRIBUTION: debian
extends: .prepare-ci
.prepare-ci-el8:
stage: prepare
needs:
- job: build-ci-el8
artifacts: true
variables:
OS_VERSION: el8
extends: .prepare-ci-rhel
.prepare-ci-el9:
stage: prepare
needs:
- job: build-ci-el9
artifacts: true
variables:
OS_VERSION: el9
extends: .prepare-ci-rhel
.prepare-ci-debian11:
stage: prepare
needs:
- job: build-ci-debian11
artifacts: true
variables:
OS_VERSION: bullseye
extends: .prepare-ci-debian
.prepare-ci-debian12:
stage: prepare
needs:
- job: build-ci-debian12
artifacts: true
variables:
OS_VERSION: bookworm
extends: .prepare-ci-debian
prepare-ci-el8-devel:
stage: prepare
only:
- /^devel.*/
extends: .prepare-ci-el8
environment:
name: devel
prepare-ci-el9-devel:
stage: prepare
only:
- /^devel.*/
extends: .prepare-ci-el9
environment:
name: devel
prepare-ci-debian11-devel:
stage: prepare
only:
- /^devel.*/
extends: .prepare-ci-debian11
environment:
name: devel
prepare-ci-debian12-devel:
stage: prepare
only:
- /^devel.*/
extends: .prepare-ci-debian12
environment:
name: devel
prepare-ci-el8-testing:
stage: prepare
only:
- /^testing$/
extends: .prepare-ci-el8
environment:
name: testing
prepare-ci-el9-testing:
stage: prepare
only:
- /^testing$/
extends: .prepare-ci-el9
environment:
name: testing
prepare-ci-debian11-testing:
stage: prepare
only:
- /^testing$/
extends: .prepare-ci-debian11
environment:
name: testing
prepare-ci-debian12-testing:
stage: prepare
only:
- /^testing$/
extends: .prepare-ci-debian12
environment:
name: testing
prepare-ci-el8-master:
stage: prepare
only:
- /^master$/
extends: .prepare-ci-el8
environment:
name: master
prepare-ci-el9-master:
stage: prepare
only:
- /^master$/
extends: .prepare-ci-el9
environment:
name: master
prepare-ci-debian11-master:
stage: prepare
only:
- /^master$/
extends: .prepare-ci-debian11
environment:
name: master
prepare-ci-debian12-master:
stage: prepare
only:
- /^master$/
extends: .prepare-ci-debian12
environment:
name: master
approve-ci:
stage: deploy
script: ':'
when: manual
.deploy-ci:
variables:
REPO_GIT_SOURCE: https://${DEPLOY_USER}:${DEPLOY_TOKEN}@${URL}
image: ${DOCKER_IMAGE_PREP}
script:
- 'eval ${DEPLOY}'
.deploy-ci-rhel:
variables:
OS_DISTRIBUTION: rhel
TARGET: ${OS_DISTRIBUTION}/${OS_VERSION}
extends: .deploy-ci
.deploy-ci-debian:
variables:
OS_DISTRIBUTION: debian
TARGET: ${OS_DISTRIBUTION}/dists/${OS_VERSION}
extends: .deploy-ci
.deploy-ci-el8:
stage: deploy
variables:
OS_VERSION: el8
image: ${DOCKER_IMAGE_PREP}
extends: .deploy-ci-rhel
resource_group: deploy
.deploy-ci-el9:
stage: deploy
variables:
OS_VERSION: el9
image: ${DOCKER_IMAGE_PREP}
extends: .deploy-ci-rhel
resource_group: deploy
.deploy-ci-debian11:
stage: deploy
variables:
OS_VERSION: bullseye
extends: .deploy-ci-debian
resource_group: deploy
.deploy-ci-debian12:
stage: deploy
variables:
OS_VERSION: bookworm
extends: .deploy-ci-debian
resource_group: deploy
deploy-ci-el8-devel:
needs:
- job: prepare-ci-el8-devel
artifacts: true
- job: approve-ci
only:
- /^devel.*/
extends: .deploy-ci-el8
environment:
name: devel
deploy-ci-el9-devel:
needs:
- job: prepare-ci-el9-devel
artifacts: true
- job: approve-ci
only:
- /^devel.*/
extends: .deploy-ci-el9
environment:
name: devel
deploy-ci-debian11-devel:
needs:
- job: prepare-ci-debian11-devel
artifacts: true
- job: approve-ci
only:
- /^devel.*/
extends: .deploy-ci-debian11
environment:
name: devel
deploy-ci-debian12-devel:
needs:
- job: prepare-ci-debian12-devel
artifacts: true
- job: approve-ci
only:
- /^devel.*/
extends: .deploy-ci-debian12
environment:
name: devel
deploy-ci-el8-testing:
needs:
- job: prepare-ci-el8-testing
artifacts: true
- job: approve-ci
only:
- /^testing$/
extends: .deploy-ci-el8
environment:
name: testing
deploy-ci-el9-testing:
needs:
- job: prepare-ci-el9-testing
artifacts: true
- job: approve-ci
only:
- /^testing$/
extends: .deploy-ci-el9
environment:
name: testing
deploy-ci-debian11-testing:
needs:
- job: prepare-ci-debian11-testing
artifacts: true
- job: approve-ci
only:
- /^testing$/
extends: .deploy-ci-debian11
environment:
name: testing
deploy-ci-debian12-testing:
needs:
- job: prepare-ci-debian12-testing
artifacts: true
- job: approve-ci
only:
- /^testing$/
extends: .deploy-ci-debian12
environment:
name: testing
deploy-ci-el8-master:
needs:
- job: prepare-ci-el8-master
artifacts: true
- job: approve-ci
only:
- /^master$/
extends: .deploy-ci-el8
environment:
name: master
deploy-ci-el9-master:
needs:
- job: prepare-ci-el9-master
artifacts: true
- job: approve-ci
only:
- /^master$/
extends: .deploy-ci-el9
environment:
name: master
deploy-ci-debian11-master:
needs:
- job: prepare-ci-debian11-master
artifacts: true
- job: approve-ci
only:
- /^master$/
extends: .deploy-ci-debian11
environment:
name: master
deploy-ci-debian12-testing:
needs:
- job: prepare-ci-debian12-master
artifacts: true
- job: approve-ci
only:
- /^master$/
extends: .deploy-ci-debian12
environment:
name: master