Disable checked arm64 jobs until jobs are stable
authorjashook <jashoo@microsoft.com>
Wed, 8 Feb 2017 05:36:17 +0000 (21:36 -0800)
committerjashook <jashoo@microsoft.com>
Wed, 8 Feb 2017 05:36:17 +0000 (21:36 -0800)
Jobs currently are expected to run red until a lstFile update goes in. Therefore,
disable the job as a PR trigger until it is clean.

Commit migrated from https://github.com/dotnet/coreclr/commit/842c64eb8ea0181368ad8e0830191fb71a92c69c

src/coreclr/netci.groovy

index 8683028..16254fd 100755 (executable)
@@ -1216,7 +1216,8 @@ def static addTriggers(def job, def branch, def isPR, def architecture, def os,
                 case 'Windows_NT':
                     switch (scenario) {
                         case 'default':
-                            if (configuration == 'Release') {
+                            // For now only run Debug jobs on PR Trigger.
+                            if (configuration != 'Debug') {
                                 Utilities.addPrivateGithubPRTriggerForBranch(job, branch, contextString,
                                 "(?i).*test\\W+${os}\\W+${architecture}\\W+${configuration}.*", null, arm64Users)
                             }