From b8571cebb0a40e7ee04deae0fb1ba2f2363269f9 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Mon, 25 May 2026 15:14:26 +0200 Subject: [PATCH] add lintian --- builder/Containerfile.template | 1 + builder/run | 1 + 2 files changed, 2 insertions(+) diff --git a/builder/Containerfile.template b/builder/Containerfile.template index 5bd7336..6a5bcdd 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 8727e63..fad3fc6 100644 --- a/builder/run +++ b/builder/run @@ -11,6 +11,7 @@ create_package_checksum() { cd /app/build/build local package=$(find . -maxdepth 1 -name '*.deb') + lintian --fail-on error,warning,pedantic $package || return $? sha256sum *.deb > $package.sha256 || return $? cat $package.sha256 || return $? } -- 2.47.3