From df750a1b2ba5de20d3d4b8cbd5fed00865cbd092 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 30 Mar 2025 17:33:42 +0000 Subject: [PATCH] jenkins: Always install all updates before trying to install any packages Signed-off-by: Michael Tremer --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 40791e22..82e99c72 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -645,6 +645,9 @@ def installBuildDepsArchLinux(distro, compiler) { // Ensure that the keyring is always up to date sh "pacman -Sy --needed --noconfirm archlinux-keyring" + // Install all updates, because pacman isn't very smart + sh "pacman -Syu --needed --noconfirm" + // Install packages sh """ pacman -Sy \ -- 2.39.5