From db8732e33460f48701c9e9fa13605913c960afc3 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 20 Jul 2026 14:33:30 +0000 Subject: [PATCH] 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 --- Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.47.3