Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Disable concurrent builds for CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
perdasilva committed Sep 19, 2019
1 parent 1a11cb7 commit 03b9e0e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cd/Jenkinsfile_cd_pipeline
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ pipeline {
agent {
label 'restricted-utility'
}
options {
// Because each pass of the CD pipeline
// updates Jenkins' state of the release job
// to avoid crazy issues, we don't allow concurrent builds.
disableConcurrentBuilds()
}

parameters {
// Release parameters
Expand Down

0 comments on commit 03b9e0e

Please sign in to comment.