From 855512da4a6567db9a69d6a3ee40f57c1fe75a2a Mon Sep 17 00:00:00 2001 From: William Giokas <1007380@gmail.com> Date: Tue, 10 Jul 2018 18:29:39 -0600 Subject: [PATCH] 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. --- Jenkinsfile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 492c0e2..fb36344 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 + // } + // } } /*