From: Michael Tremer Date: Thu, 24 Oct 2024 12:41:59 +0000 (+0000) Subject: jenkins: Run Clang Static Analyzer on Debian Trixie X-Git-Tag: 0.9.30~916 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9a218da16485ff2801fd0d9b8ec5e8bd37e8135d;p=pakfire.git jenkins: Run Clang Static Analyzer on Debian Trixie Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 2a75a3004..0f39e5b27 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { stage("Clang Static Analyzer") { agent { docker { - image "debian:bookworm-backports" + image "debian:trixie" // Run as root inside the containers to install dependencies args "-u root" @@ -23,7 +23,7 @@ pipeline { stage("Install Dependencies") { steps { script { - installBuildDepsDebian("bookworm", "clang") + installBuildDepsDebian("trixie", "clang") // Install Clang Tools sh "apt-get install -y clang-tools"