From 098970c69e58d6337e59dd27f57b8cc14dc6e37f Mon Sep 17 00:00:00 2001 From: Bruce Forstall Date: Thu, 20 Sep 2018 00:40:45 -0700 Subject: [PATCH] Exclude Windows from arm64 daily corefx job scheduling Commit migrated from https://github.com/dotnet/coreclr/commit/ff8c9ea68f45b8620d36560bc4f4c18a3daf6e5f --- src/coreclr/netci.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index 2f16ada..6e16a71 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -1560,7 +1560,7 @@ def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def break } if (jobRequiresLimitedHardware(architecture, os)) { - if ((architecture == 'arm64') && !isCoreFxScenario(scenario)) { + if ((architecture == 'arm64') && (os == 'Ubuntu16.04') && !isCoreFxScenario(scenario)) { // These jobs are very fast on Linux/arm64 hardware, so run them daily. // TODO: When the corefx jobs are made to run in parallel, run those // jobs daily as well. -- 2.7.4