Newer
Older
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
---
include:
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
stages:
- provisioning
- build
- publish
- test
- upload
- release
variables:
# Package version can only contain numbers (0-9), and dots (.).
# Must be in the format of X.Y.Z, i.e. should match /\A\d+\.\d+\.\d+\z/ regular expresion.
# See https://docs.gitlab.com/ee/user/packages/generic_packages/#publish-a-package-file
PACKAGE_VERSION: "0"
ARCH: 'amd64'
LINUX_AMD64_BINARY: "{$CI_PROJECT_NAME}_${PACKAGE_VERSION}_{$ARCH}.deb"
PACKAGE_REGISTRY_URL: 'https://www.opencode.net/netrunner/packages/-/tree/main/'
VENDOR: 'netrunner'
RELEASE:
description: "The Debian release to build for"
value: 'stable'
#EXTRA_REPOSITORY: http://dci.ds9.pub/netrunner main
#EXTRA_REPOSITORY_KEY: https://github.com/pangea-project/pangea-tooling/blob/master/dci/dci_apt.key
SALSA_CI_DISABLE_VERSION_BUMP: 1
SALSA_CI_DISABLE_BUILD_PACKAGE_I386: 1
.test-crossbuild-arm64:
extends: .test-crossbuild-package-arm64
allow_failure: true
reprotest:
extends: .test-reprotest
allow_failure: true
lintian:
extends: .test-lintian
allow_failure: true
autopkgtest:
extends: .test-autopkgtest
allow_failure: true
blhc:
extends: .test-blhc
allow_failure: true
piuparts:
extends: .test-piuparts
allow_failure: true
missing-breaks:
extends: .test-missing-breaks
allow_failure: true
rc-bugs:
extends: .test-rc-bugs
allow_failure: true
aptly:
extends: .publish-aptly
allow_failure: true
upload:
stage: upload
image: curlimages/curl:latest
script:
- |
curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file debian/output/${LINUX_AMD64_BINARY} ${PACKAGE_REGISTRY_URL}/${LINUX_AMD64_BINARY}
only:
- master
allow_failure: true
release:
# Caution, as of 2021-02-02 these assets links require a login, see:
# https://gitlab.com/gitlab-org/gitlab/-/issues/299384
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
script:
- |
release-cli create --name "Release $CI_COMMIT_TAG" --tag-name $CI_COMMIT_TAG \
--assets-link "{\"name\":\"${LINUX_AMD64_BINARY}\",\"url\":\"${PACKAGE_REGISTRY_URL}/${LINUX_AMD64_BINARY}\"}"
only:
- master
allow_failure: true