From 3af762441a3d9af048484a40839f3732bdf43cf2 Mon Sep 17 00:00:00 2001 From: Jim Klimov Date: Mon, 4 Dec 2017 23:53:10 +0100 Subject: [PATCH] Problem: Jenkinsfile uses "any" agent Solution: avoid using infrastructure and default agents by requiring a reasonable label (like in GSL and zproject) Signed-off-by: Jim Klimov --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7ab9efd3..4f293248 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ pipeline { - agent any + agent { label "linux || macosx || bsd || solaris || posix || windows" } parameters { // Use DEFAULT_DEPLOY_BRANCH_PATTERN and DEFAULT_DEPLOY_JOB_NAME if // defined in this jenkins setup -- in Jenkins Management Web-GUI