Jenkins: Allows for concurrent builds.

On Cloudbees every build is started on a new worker. So no need to
restrict execution.
This commit is contained in:
Johannes Schnatterer
2018-07-12 13:04:06 +02:00
parent 4859be47b7
commit 36e5a5fc8b

2
Jenkinsfile vendored
View File

@@ -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 {