From 523cd38cd6df3143f0818b162f11c42a3a9d2fc0 Mon Sep 17 00:00:00 2001 From: jashook Date: Tue, 7 Feb 2017 21:36:17 -0800 Subject: [PATCH] Disable checked arm64 jobs until jobs are stable 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index 8683028..16254fd 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -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) } -- 2.7.4