From 60d5dbd202d2187e382a8e616de07a0621898edd Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Mon, 25 May 2026 09:45:22 +0200 Subject: [PATCH] add lintian to builder --- builder/Containerfile.template | 1 + builder/run | 1 + 2 files changed, 2 insertions(+) diff --git a/builder/Containerfile.template b/builder/Containerfile.template index 95414bb..39360f3 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 522cea3..18d7d0d 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 $? } -- 2.47.3