blob: 2c93759b856270661c24059afc55f28217f2cb31 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
stages:
- test
- package
- publish
test:wheezy: &test
image: $CI_REGISTRY/docker-images/layers:$DISTRO-ruby
stage: test
variables:
DISTRO: wheezy
script:
- make test
test:jessie: &test
image: $CI_REGISTRY/docker-images/layers:$DISTRO-ruby
stage: test
variables:
DISTRO: jessie
script:
- make test
.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:wheezy
- package:jessie
- package:stretch
|