From 6a79041602de733b4cfaf3ca0eede260fcc700c0 Mon Sep 17 00:00:00 2001 From: Matt Robinson Date: Mon, 17 Dec 2018 15:33:59 -0500 Subject: [PATCH] Limit Jenkins to only one build at a time (#893) --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b1835d123..ecc7f0751 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,5 +1,5 @@ node('node') { - disableConcurrentBuilds() + properties([disableConcurrentBuilds()]) try { currentBuild.result = "SUCCESS"