From: Michael Tremer Date: Fri, 24 Jan 2025 10:30:02 +0000 (+0000) Subject: jenkins: Run LCOV tests on Debian Bookworm X-Git-Tag: 0.9.30~389 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fe7671601b141a7c96a3d159269e193f3a75ab63;p=pakfire.git jenkins: Run LCOV tests on Debian Bookworm Debian Trixie seems to generate some problems and I don't know how to work around them now. Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 175518b0..c7330011 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -180,7 +180,7 @@ pipeline { stage("LCOV") { agent { docker { - image "debian:trixie" + image "debian:bookworm-backports" // Run as root inside the containers to install dependencies args "--privileged -u root" @@ -193,7 +193,7 @@ pipeline { stage("Install Dependencies") { steps { script { - installBuildDepsDebian("trixie", "gcc") + installBuildDepsDebian("bookworm-backports", "gcc") // Install lcov sh "apt-get install -y lcov"