We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35ac188 commit 650efe9Copy full SHA for 650efe9
Jenkinsfile
@@ -45,6 +45,7 @@ pipeline {
45
preserveStashes(buildCount: 7)
46
parallelsAlwaysFailFast()
47
buildDiscarder(logRotator(numToKeepStr: '20', daysToKeepStr: '30'))
48
+ disableConcurrentBuilds(abortPrevious: true)
49
}
50
environment {
51
STAN_NUM_THREADS = 4
@@ -66,18 +67,6 @@ pipeline {
66
67
68
stages {
69
- stage('Kill previous builds') {
70
- when {
71
- not { branch 'develop' }
72
- not { branch 'master' }
73
- }
74
- steps {
75
- script {
76
- utils.killOldBuilds()
77
78
79
80
-
81
stage("Clang-format") {
82
agent {
83
docker {
0 commit comments