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....