From: Matt Mitchell Date: Thu, 5 Nov 2015 20:00:02 +0000 (-0800) Subject: Enable coreclr tests by default X-Git-Tag: accepted/tizen/base/20180629.140029~6188^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03e72533374abba97c0dd0388576ac8ae54545cd;p=platform%2Fupstream%2Fcoreclr.git Enable coreclr tests by default --- diff --git a/netci.groovy b/netci.groovy index d2d82f6..1228ec5 100644 --- a/netci.groovy +++ b/netci.groovy @@ -302,7 +302,7 @@ def static getBuildJobName(def configuration, def architecture, def os) { } // Unzip the tests first. Exit with 0 - shell("unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.${architecture}.${configuration}; exit 0") + shell("unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.${architecture}.${configuration} || exit 0") // Execute the tests shell(""" @@ -371,7 +371,7 @@ build(globalParams + [CORECLR_LINUX_BUILD: linuxBuildJob.build.number, if (configuration == 'Release') { // Tests will be run on x64 Release by default (no trigger phase required). Utilities.addGithubPRTrigger(newFlowJob, "Ubuntu ${architecture} ${configuration} Build and Test", - "(?i).*test\\W+ubuntu\\W+release.*", true /* trigger by phrase only */) + "(?i).*test\\W+ubuntu\\W+release.*", false /* trigger by phrase only */) } else { Utilities.addGithubPRTrigger(newFlowJob, "Ubuntu ${architecture} ${configuration} Build and Test", "(?i).*test\\W+ubuntu\\W+debug.*", true /* trigger by phrase only */) }