blob: dbca38efb409dfbce3b573b730bb5968c1c4bfde (
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
|
---
include:
- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
variables:
# package only contains Architecture: all
SALSA_CI_DISABLE_BUILD_PACKAGE_ANY: '1'
SALSA_CI_DISABLE_CROSSBUILD_ARM64: '1'
# and takes a long time to build
SALSA_CI_BUILD_TIMEOUT_ARGS: "2h"
# since this pipeline takes ages to build,
# and building it under CI probably doesn't prove much
# let's make it opt-in
build:
extends: .build-package
when: manual
build i386:
extends: .build-package-i386
when: manual
test-build-all:
extends: .test-build-package-all
when: manual
|