blob: 45c38f6f56409d7ac4fd47f678f6efd866b4e21d (
plain)
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
|
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
publish:
stage: publish
variables:
RSYNC_HOSTNAME: repo.bytemark.co.uk
tags:
- shell
script:
- publish
dependencies:
- package:squeeze
- package:wheezy
- package:jessie
- package:stretch
|