mirror of https://github.com/jenkinsci/jenkins.git
Clean up `Jenkinsfile` (#6513)
This commit is contained in:
parent
04c1088753
commit
057e4f16f1
|
@ -5,8 +5,6 @@
|
|||
* It makes assumptions about plugins being installed, labels mapping to nodes that can build what is needed, etc.
|
||||
*/
|
||||
|
||||
def buildNumber = BUILD_NUMBER as int; if (buildNumber > 1) milestone(buildNumber - 1); milestone(buildNumber) // JENKINS-43353 / JENKINS-58625
|
||||
|
||||
def failFast = false
|
||||
|
||||
properties([
|
||||
|
@ -38,7 +36,7 @@ for (i = 0; i < buildTypes.size(); i++) {
|
|||
// First stage is actually checking out the source. Since we're using Multibranch
|
||||
// currently, we can use "checkout scm".
|
||||
stage('Checkout') {
|
||||
checkout scm
|
||||
infra.checkoutSCM()
|
||||
}
|
||||
|
||||
def changelistF = "${pwd tmp: true}/changelist"
|
||||
|
|
Loading…
Reference in New Issue