summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2019-02-05 12:46:35 -0800
committerGitHub <noreply@github.com>2019-02-05 12:46:35 -0800
commit9233c04d6dd3ca93d441cb3172642c2fb41274c9 (patch)
tree3b0b9393481192cb8139e422ba6b0c542fed8607 /netci.groovy
parente6edc905275636d56eed4e88b94b71eecbf8ba74 (diff)
parentfe661d2ae18c12ed04092a27f03f9c739834d2c8 (diff)
downloadcoreclr-9233c04d6dd3ca93d441cb3172642c2fb41274c9.tar.gz
coreclr-9233c04d6dd3ca93d441cb3172642c2fb41274c9.tar.bz2
coreclr-9233c04d6dd3ca93d441cb3172642c2fb41274c9.zip
Merge pull request #22432 from BruceForstall/DisableWindowsArm64CorefxCronJobs
Disable Windows arm64 corefx cron jobs
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy9
1 files changed, 9 insertions, 0 deletions
diff --git a/netci.groovy b/netci.groovy
index 0472de6415..53210cd94a 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1568,6 +1568,15 @@ def static addNonPRTriggers(def job, def branch, def isPR, def architecture, def
if ((architecture == 'arm64') && isCoreFxScenario(scenario) && !isFlowJob) {
break
}
+ // Windows arm64 corefx testing all fails due to time out, partially due to no parallelism
+ // in the test run harness. So don't create cron jobs for these. We could alternatively
+ // just increase the timeout, but we don't have enough Windows arm64 machines to
+ // take so much time running these. We also have Linux/arm64 corefx test coverage.
+ // It would be best to improve the runtime of the tests.
+ // See issue https://github.com/dotnet/coreclr/issues/21236.
+ if ((architecture == 'arm64') && isCoreFxScenario(scenario) && (os == 'Windows_NT')) {
+ break
+ }
if (jobRequiresLimitedHardware(architecture, os)) {
if ((architecture == 'arm64') && (os == 'Ubuntu16.04')) {
// These jobs are very fast on Linux/arm64 hardware, so run them daily.