From 041526602fb6e367565f2eca3955e722a44a8655 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:21:39 +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 e4319eea..67d324ac 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