Clean up `Jenkinsfile` (#6513)

This commit is contained in:
Basil Crow 2022-04-26 06:33:06 -07:00 committed by GitHub
parent 04c1088753
commit 057e4f16f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

4
Jenkinsfile vendored
View File

@ -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"