From db9570d657ae84d14281330e818ce6b9bf54b1e4 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Sun, 15 Dec 2024 10:42:04 +0100 Subject: [PATCH] Build Equinox launcher for linux.x86_64 on debian-12 The image 'platformreleng-centos-swt-build:8' cannot be built anymore and is therefore not updated. Align with SWT and use the debian-12 image instead. This will increase the GLIBC version requirement to version 2.34, see https://github.com/eclipse-platform/eclipse.platform.swt/pull/1422#issuecomment-2470145844 See also https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/pull/2441 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index adf3244d01..4de1d22097 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ def runOnNativeBuildAgent(String platform, Closure body) { def final nativeBuildStageName = 'Perform native launcher build' if (platform == 'gtk.linux.x86_64') { podTemplate(inheritFrom: 'basic' /* inherit general configuration */, containers: [ - containerTemplate(name: 'launcherbuild', image: 'eclipse/platformreleng-centos-swt-build:8', + containerTemplate(name: 'launcherbuild', image: 'eclipse/platformreleng-debian-swtnativebuild:12', resourceRequestCpu:'1000m', resourceRequestMemory:'512Mi', resourceLimitCpu:'2000m', resourceLimitMemory:'4096Mi', alwaysPullImage: true, command: 'cat', ttyEnabled: true)