From 1901397d816702a1af801935f261fc0cd2b0d926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Barbero?= <mikael.barbero@eclipse-foundation.org> Date: Mon, 23 Nov 2020 16:15:35 +0100 Subject: [PATCH] Prevents cache collisions between jobs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mikaël Barbero <mikael.barbero@eclipse-foundation.org> --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 31d9222..1681b65 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ pipeline { agent { kubernetes { - label 'kubedeploy-agent' + label 'kubedeploy-agent-' + env.JOB_NAME.replaceAll("/", "-") yaml ''' apiVersion: v1 kind: Pod -- GitLab