Skip to content

Commit

Permalink
Merge pull request #3262 from stan-dev/ci/jenkins-downstream-concurrent
Browse files Browse the repository at this point in the history
Properly allow multiple downstream jenkins runs
  • Loading branch information
WardBrian authored Jan 28, 2024
2 parents d402c36 + 68df3c6 commit 29c60f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pipeline {
preserveStashes(buildCount: 7)
parallelsAlwaysFailFast()
buildDiscarder(logRotator(numToKeepStr: '20', daysToKeepStr: '30'))
disableConcurrentBuilds(abortPrevious: env.BRANCH_NAME != "downstream_tests" || env.BRANCH_NAME != "downstream_hotfix")
disableConcurrentBuilds(abortPrevious: env.BRANCH_NAME != "downstream_tests" && env.BRANCH_NAME != "downstream_hotfix")
}
environment {
GCC = 'g++'
Expand Down

0 comments on commit 29c60f7

Please sign in to comment.