From 36e5a5fc8bad66e5dce080ecc5c3570f6801c24f Mon Sep 17 00:00:00 2001 From: Johannes Schnatterer Date: Thu, 12 Jul 2018 13:04:06 +0200 Subject: [PATCH] Jenkins: Allows for concurrent builds. On Cloudbees every build is started on a new worker. So no need to restrict execution. --- Jenkinsfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5d8a652c17..145e7f2691 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,8 +12,6 @@ node() { // No specific label properties([ // Keep only the last 10 build to preserve space buildDiscarder(logRotator(numToKeepStr: '10')), - // Don't run concurrent builds for a branch, because they use the same workspace directory - disableConcurrentBuilds() ]) catchError {