blob: beb713fe4a639463ccfd3dc30dd37e200086fe83 (
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
59
60
61
62
63
|
stages:
- test
- package
.job_template: &job_definition
stage: package
image: "0xacab.org:4567/leap/gitlab-buildpackage:build_${DIST}_${ARCH}"
script:
- "pwd; git describe"
- build-build-package
# Test the package with lintian
- build-test-lintian
- upload-package
# sleep 1h to allow debugging of running container
#- sleep 3600
artifacts:
expire_in: 1w
paths:
- '*_*.xz'
- '*_*.dsc'
- '*_amd64.changes'
- '*.deb'
- 'results/*'
test:
stage: test
image: "0xacab.org:4567/leap/gitlab-buildpackage:test_jessie_amd64"
script:
- tox --recreate
package:amd64_jessie:
variables:
ARCH: "amd64"
DIST: "jessie"
REPONAME: "platform"
REPONAMES: "platform,client"
<<: *job_definition
package:amd64_stretch:
variables:
ARCH: "amd64"
DIST: "stretch"
REPONAMES: "platform,client"
<<: *job_definition
package:amd64_buster:
variables:
ARCH: "amd64"
DIST: "buster"
REPONAMES: "platform,client"
# Default is to fail on warnings, we disable it here
# unless we fix the standards-version depending on the release
# (see https://0xacab.org/leap/bitmask-dev/issues/9060)
LINTIAN_OPTS: "-X filename-length"
<<: *job_definition
package:amd64_zesty:
variables:
ARCH: "amd64"
DIST: "zesty"
REPONAMES: "client"
<<: *job_definition
|