Merge branch 'master' into 2019_2_1_port_49293

This commit is contained in:
Dmitry Kuzmenko 2019-11-14 03:54:44 +03:00 committed by GitHub
commit 857415f24f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
51 changed files with 501 additions and 351 deletions

View File

@ -7,6 +7,8 @@ properties([
buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '10')), buildDiscarder(logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '10')),
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > 1) { if (buildNumber > 1) {
@ -15,6 +17,7 @@ if (buildNumber > 1) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
def shell_header def shell_header

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -22,6 +22,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -30,6 +32,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') { wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') {
withEnv([ withEnv([

View File

@ -22,6 +22,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -30,6 +32,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') { wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') {
withEnv([ withEnv([

View File

@ -22,6 +22,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -30,6 +32,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') { wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') {
withEnv([ withEnv([

View File

@ -22,6 +22,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -30,6 +32,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') { wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') {
withEnv([ withEnv([

View File

@ -22,6 +22,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -30,6 +32,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') { wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') {
withEnv([ withEnv([

View File

@ -22,6 +22,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -30,6 +32,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') { wrappedNode(jenkins_slave_label, global_timeout, '#jenkins-prod-pr') {
withEnv([ withEnv([

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -20,6 +20,8 @@ properties([
]) ])
]) ])
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > concurrent_builds) { if (buildNumber > concurrent_builds) {
@ -28,6 +30,7 @@ if (buildNumber > concurrent_builds) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
runTests( runTests(
env: env, env: env,

View File

@ -10,6 +10,8 @@ properties([
def shell_header def shell_header
// Only set milestones on PR builds
if (env.CHANGE_ID) {
// Be sure to cancel any previously running builds // Be sure to cancel any previously running builds
def buildNumber = env.BUILD_NUMBER as int def buildNumber = env.BUILD_NUMBER as int
if (buildNumber > 1) { if (buildNumber > 1) {
@ -18,6 +20,7 @@ if (buildNumber > 1) {
} }
// Define a milestone for this build so that, if another build starts, this one will be aborted // Define a milestone for this build so that, if another build starts, this one will be aborted
milestone(buildNumber) milestone(buildNumber)
}
def lint_report_issues = [] def lint_report_issues = []

View File

@ -21,7 +21,7 @@ log = logging.getLogger(__name__)
# These arches compiled from the rpmUtils.arch python module source # These arches compiled from the rpmUtils.arch python module source
ARCHES_64 = ('x86_64', 'athlon', 'amd64', 'ia32e', 'ia64', 'geode') ARCHES_64 = ('x86_64', 'athlon', 'amd64', 'ia32e', 'ia64', 'geode')
ARCHES_32 = ('i386', 'i486', 'i586', 'i686') ARCHES_32 = ('i386', 'i486', 'i586', 'i686')
ARCHES_PPC = ('ppc', 'ppc64', 'ppc64iseries', 'ppc64pseries') ARCHES_PPC = ('ppc', 'ppc64', 'ppc64le', 'ppc64iseries', 'ppc64pseries')
ARCHES_S390 = ('s390', 's390x') ARCHES_S390 = ('s390', 's390x')
ARCHES_SPARC = ( ARCHES_SPARC = (
'sparc', 'sparcv8', 'sparcv9', 'sparcv9v', 'sparc64', 'sparc64v' 'sparc', 'sparcv8', 'sparcv9', 'sparcv9v', 'sparc64', 'sparc64v'