Comment out all of the kitchen runs

These aren't doing anything except taking up time on random hosts it
seems. Better to remove them.
This commit is contained in:
William Giokas 2018-07-10 18:29:39 -06:00
parent 587ac40827
commit 855512da4a
No known key found for this signature in database
GPG key ID: 690206D873CD09CF

22
Jenkinsfile vendored
View file

@ -76,17 +76,17 @@ node ('bootstrap') {
checkstyle pattern: '**/checkstyle.xml'
archiveArtifacts artifacts: '**/checkstyle.xml'
}
if (env.CHANGE_ID) {
// Running for a PR only runs against 4 random distros from a shorter list
stage('kitchen-pr') {
parallel prSetupRuns
}
} else {
// If we're not running for a pr we run *everything*
stage('kitchen-all') {
parallel setupRuns
}
}
// if (env.CHANGE_ID) {
// // Running for a PR only runs against 4 random distros from a shorter list
// stage('kitchen-pr') {
// parallel prSetupRuns
// }
// } else {
// // If we're not running for a pr we run *everything*
// stage('kitchen-all') {
// parallel setupRuns
// }
// }
}
/*