From 6d5e55cefe6ab366bd2004db68a8527147b19592 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Wed, 27 Nov 2024 22:02:06 +0100 Subject: [PATCH] [Build] Inherit basic config from 'basic' image for linux.x86_64 builder The image is just specified to inherit basic configuration from it and higher level images are not necessary. Image description: https://github.com/eclipse-cbi/jiro-agents/blob/b816db0ea7b1c4f574be1e8d28bd31dafa47f8d4/basic/README.md --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b07bce612c..adf3244d01 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ def runOnNativeBuildAgent(String platform, Closure body) { def final nativeBuildStageName = 'Perform native launcher build' if (platform == 'gtk.linux.x86_64') { - podTemplate(inheritFrom: 'centos-latest' /* inhert general configuration */, containers: [ + podTemplate(inheritFrom: 'basic' /* inherit general configuration */, containers: [ containerTemplate(name: 'launcherbuild', image: 'eclipse/platformreleng-centos-swt-build:8', resourceRequestCpu:'1000m', resourceRequestMemory:'512Mi', resourceLimitCpu:'2000m', resourceLimitMemory:'4096Mi',