diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:45:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:45:08 +0000 |
commit | f866c40aef35932863d4cb9f22859641227c9b60 (patch) | |
tree | 916091dcb4e1c863c6e666133f0d32244e2d84eb /debian/salsa-ci.yml | |
parent | Adding upstream version 0.142. (diff) | |
download | initramfs-tools-255ad5d66c194dce91eaedd4bd58ed524eccecbf.tar.xz initramfs-tools-255ad5d66c194dce91eaedd4bd58ed524eccecbf.zip |
Adding debian version 0.142.debian/0.142debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/salsa-ci.yml')
-rw-r--r-- | debian/salsa-ci.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/salsa-ci.yml b/debian/salsa-ci.yml new file mode 100644 index 0000000..ef9162e --- /dev/null +++ b/debian/salsa-ci.yml @@ -0,0 +1,24 @@ +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 + +variables: + RELEASE: 'unstable' + # We only build arch:all packages + SALSA_CI_DISABLE_BLHC: 'true' + SALSA_CI_DISABLE_BUILD_PACKAGE_I386: 'true' + SALSA_CI_DISABLE_BUILD_PACKAGE_ANY: 'true' + SALSA_CI_DISABLE_CROSSBUILD_ARM64: 'true' + +shellcheck: + stage: test + image: $SALSA_CI_IMAGES_BASE + except: + variables: + - $CI_COMMIT_TAG != null + script: + - apt-get update + - apt-get install -y shellcheck + - | + shellcheck -e SC1090,SC1091 -s dash hook-functions $(find hooks scripts -type f) $({ find . -maxdepth 1 -type f -executable; find debian -maxdepth 1 -type f; find docs kernel -type f; } | xargs grep -l '^#!/bin/sh') + needs: [] |