From 03e72533374abba97c0dd0388576ac8ae54545cd Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Thu, 5 Nov 2015 12:00:02 -0800 Subject: [PATCH] Enable coreclr tests by default --- netci.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */) } -- 2.7.4