From: Bastian Dehn Date: Mon, 25 May 2026 09:56:26 +0000 (+0200) Subject: add lintian X-Git-Tag: v1.1.32^2~3 X-Git-Url: https://gitweb.hhaalo.de/?a=commitdiff_plain;h=d1f9a448003680fd59649388cd9b7b887ea45904;p=sane-kds-s2000w-net.git add lintian --- diff --git a/builder/Containerfile.template b/builder/Containerfile.template index 4d11309..d1ad6ce 100644 --- a/builder/Containerfile.template +++ b/builder/Containerfile.template @@ -8,6 +8,7 @@ RUN apt-get update \ git \ cppcheck \ lcov \ + lintian \ && apt-get clean \ && rm --recursive --force /var/lib/apt/lists/* RUN apt-get update \ diff --git a/builder/run b/builder/run index 6592409..ef42f25 100644 --- a/builder/run +++ b/builder/run @@ -9,6 +9,7 @@ get_source_date() create_package_checksum() { local package=$(find . -maxdepth 1 -name '*.deb' ) + lintian --fail-on error,warning,pedantic $package || return $? sha256sum *.deb > $package.sha256 || return $? cat $package.sha256 || return $? }