From: Wesley Hirsch Date: Mon, 10 Apr 2017 17:18:59 +0000 (-0400) Subject: Fix build executor collision issues in Jenkins X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FSO.git;a=commitdiff_plain;h=d771696a9ffdc2a09a910169968a763ac5038496 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 --- 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 '''