From b421b9fd79d861f878b528537b9ec5728c32cd62 Mon Sep 17 00:00:00 2001 From: Anthony Lamping Date: Wed, 30 May 2018 19:37:20 -0400 Subject: [PATCH] jenkins: agent none from jenkins docs: When applied at the top-level of the pipeline block no global agent will be allocated for the entire Pipeline run and each stage section will need to contain its own agent section. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 81c1f9b8b..62a0ac732 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ pipeline { - agent any + agent none stages { stage('build') { parallel { -- 2.22.0