diff options
Diffstat (limited to 'debian/salsa-ci.yml')
-rw-r--r-- | debian/salsa-ci.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/salsa-ci.yml b/debian/salsa-ci.yml new file mode 100644 index 0000000..fc2e898 --- /dev/null +++ b/debian/salsa-ci.yml @@ -0,0 +1,30 @@ +--- +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml + +build-testing: + variables: + RELEASE: 'testing' + DEB_BUILD_OPTIONS: 'nocheck' + extends: .build-package + +build-bookworm-backports: + variables: + RELEASE: 'bookworm-backports' + DEB_BUILD_OPTIONS: 'nocheck' + extends: .build-package + allow_failure: true + +variables: + SALSA_CI_DISABLE_BLHC: 1 + SALSA_CI_DISABLE_BUILD_PACKAGE_ANY: 1 + SALSA_CI_LINTIAN_FAIL_WARNING: 1 + DEB_BUILD_OPTIONS: 'nocheck' + +# Try to override the lintian version being used to the just built +# version. +.test-lintian: &test-lintian + before_script: + - apt-get update + - apt-get install -y ${WORKING_DIR}/lintian_*.deb |