From f71640889fb6047e91d193daa4aa9f957ad4f373 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Wed, 21 May 2025 13:00:21 +0200 Subject: [PATCH] Jenkinsfile: update to use Ubuntu 22.04 agents Signed-off-by: Sebastiaan van Stijn --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ffad6bbc4b..810e4e09f2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,7 +31,7 @@ def genBuildStep(LinkedHashMap pkg, String arch) { platform = "--platform=linux/${arch}" nodeLabel = "${nodeLabel}&&ubuntu" } else { - nodeLabel = "${nodeLabel}&&ubuntu-2004" + nodeLabel = "${nodeLabel}&&ubuntu-2204" } return { -> wrappedNode(label: nodeLabel, cleanWorkspace: true) { @@ -58,7 +58,7 @@ def genBuildStep(LinkedHashMap pkg, String arch) { def build_package_steps = [ 'static-linux': { -> - wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) { + wrappedNode(label: 'ubuntu-2204 && x86_64', cleanWorkspace: true) { stage("static-linux") { // This is just a "dummy" stage to make the distro/arch visible // in Jenkins' BlueOcean view, which truncates names.... @@ -79,7 +79,7 @@ def build_package_steps = [ } }, 'cross-mac': { -> - wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) { + wrappedNode(label: 'ubuntu-2204 && x86_64', cleanWorkspace: true) { stage("cross-mac") { // This is just a "dummy" stage to make the distro/arch visible // in Jenkins' BlueOcean view, which truncates names.... @@ -100,7 +100,7 @@ def build_package_steps = [ } }, 'cross-win': { -> - wrappedNode(label: 'ubuntu-2004 && x86_64', cleanWorkspace: true) { + wrappedNode(label: 'ubuntu-2204 && x86_64', cleanWorkspace: true) { stage("cross-win") { // This is just a "dummy" stage to make the distro/arch visible // in Jenkins' BlueOcean view, which truncates names....