-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
76 lines (65 loc) · 1.11 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
---
stages:
- package
- publish
.package: &package
image: $CI_REGISTRY/docker-images/layers:$DISTRO-deb
stage: package
script:
- package
artifacts:
paths:
- pkg/
package:wheezy:
<<: *package
variables:
DISTRO: wheezy
package:jessie:
<<: *package
variables:
DISTRO: jessie
package:stretch:
<<: *package
variables:
DISTRO: stretch
package:buster:
<<: *package
variables:
DISTRO: buster
package:bullseye:
<<: *package
variables:
DISTRO: bullseye
package:trusty:
<<: *package
variables:
DISTRO: trusty
package:xenial:
<<: *package
variables:
DISTRO: xenial
package:bionic:
<<: *package
variables:
DISTRO: bionic
package:focal:
<<: *package
variables:
DISTRO: focal
publish:
stage: publish
variables:
RSYNC_HOSTNAME: repo.bytemark.co.uk
image: $CI_REGISTRY/docker-images/layers:stretch-publish
script:
- publish
dependencies:
- package:wheezy
- package:jessie
- package:stretch
- package:buster
- package:bullseye
- package:trusty
- package:xenial
- package:bionic
- package:focal