From ca1bb19913c96121ef58a79a3f2660332d5b98fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20L=C3=A4ubrich?= Date: Wed, 27 Nov 2024 09:39:35 +0100 Subject: [PATCH] Use ubuntu-latest instead of outdated centos-8 --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bd025c5582..006eba5cbd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,7 +18,7 @@ def runOnNativeBuildAgent(String platform, Closure body) { def final nativeBuildStageName = 'Build SWT-native binaries' if (platform == 'gtk.linux.x86_64') { - podTemplate(inheritFrom: 'centos-latest' /* inhert general configuration */, containers: [ + podTemplate(inheritFrom: 'ubuntu-latest' /* inhert general configuration */, containers: [ containerTemplate(name: 'swtbuild', image: 'eclipse/platformreleng-centos-swt-build:8', resourceRequestCpu:'1000m', resourceRequestMemory:'512Mi', resourceLimitCpu:'2000m', resourceLimitMemory:'4096Mi', @@ -84,7 +84,7 @@ pipeline { disableConcurrentBuilds(abortPrevious: true) } agent { - label 'centos-latest' + label 'ubuntu-latest' } tools { jdk 'temurin-jdk17-latest'