From d771696a9ffdc2a09a910169968a763ac5038496 Mon Sep 17 00:00:00 2001 From: Wesley Hirsch Date: Mon, 10 Apr 2017 13:18:59 -0400 Subject: [PATCH] Fix build executor collision issues in Jenkins Explicitly require that the declarative pipeline master run on a node with the label pipeline so that the build itself can consume standard resources. Change-Id: I16b46329fa4430336b884dff4d732d889ab65c73 Signed-off-by: Wesley Hirsch --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0c556a47..f6f9a713 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,7 @@ pipeline { - agent any + agent { + label "pipeline" + } stages { stage("Build") { agent { @@ -11,6 +13,7 @@ pipeline { } } stage("Repo Component") { + agent any steps { unstash "deb-files" sh ''' -- 2.25.1