From: Lubomir Litchev Date: Thu, 26 May 2016 03:27:50 +0000 (-0700) Subject: Don't do r2r-jitstress jobs for non Checked configurations. X-Git-Tag: accepted/tizen/base/20180629.140029~4532^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6dcc70e2572a354e8de201ac3dff37f53825b9f0;p=platform%2Fupstream%2Fcoreclr.git Don't do r2r-jitstress jobs for non Checked configurations. --- diff --git a/netci.groovy b/netci.groovy index 5440ff9..8d28676 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1264,6 +1264,12 @@ combinedScenarios.each { scenario -> } } else { + // If this is a r2r jitstress, jitstressregs, jitminopts or forcerelocs scenario + // and configuration is not Checked, bail out. + if (configuration != 'Checked' && Constants.r2rJitStressScenarios.indexOf(scenario) != -1) { + return; + } + // Skip scenarios switch (scenario) { case 'pri1': @@ -1781,6 +1787,11 @@ combinedScenarios.each { scenario -> return } } + // If this is a r2r jitstress, jitstressregs, jitminopts or forcerelocs scenario + // and configuration is not Checked, bail out. + else if (configuration != 'Checked' && Constants.r2rJitStressScenarios.indexOf(scenario) != -1) { + return; + } // For CentOS, we only want Checked/Release pri1 builds. else if (os == 'CentOS7.1') { if (scenario != 'pri1' &&