From: Michael Tremer Date: Mon, 20 Jul 2026 14:33:30 +0000 (+0000) Subject: jenkins: Ensure RedHat/Fedora systems are up to date X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;p=people%2Fms%2Flibloc.git jenkins: Ensure RedHat/Fedora systems are up to date We seem to constantly run into the same bugs on rawhide where the image is not being updated too often. Signed-off-by: Michael Tremer --- diff --git a/Jenkinsfile b/Jenkinsfile index 6a88361..c6c8d9a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -453,6 +453,10 @@ pipeline { // Installs everything we need on RHEL/Fedora/etc. def installBuildDepsRedHat(distro, compier) { + // Ensure the system is up to date + sh "dnf upgrade -y" + + // Install development tools sh "dnf group install -y development-tools" // Install our own build and runtime dependencies