Skip to content

Commit

Permalink
Disable concurrent builds in all pipelines
Browse files Browse the repository at this point in the history
Signed-off-by: Joonas Rautiola <[email protected]>
  • Loading branch information
joinemm committed Oct 17, 2024
1 parent af25e7c commit 3b479a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions ghaf-main-pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ pipeline {
pollSCM('* * * * *')
}
options {
disableConcurrentBuilds()
timestamps ()
buildDiscarder(logRotator(numToKeepStr: '100'))
}
Expand Down
1 change: 1 addition & 0 deletions ghaf-parallel-pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ pipeline {
pollSCM '0 23 * * *'
}
options {
disableConcurrentBuilds()
timestamps ()
buildDiscarder(logRotator(numToKeepStr: '100'))
}
Expand Down
1 change: 1 addition & 0 deletions ghaf-pre-merge-pipeline.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ properties([
pipeline {
agent { label 'built-in' }
options {
disableConcurrentBuilds()
timestamps ()
buildDiscarder(logRotator(numToKeepStr: '100'))
}
Expand Down

0 comments on commit 3b479a4

Please sign in to comment.