summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-01-31 18:55:58 -0800
committerGitHub <noreply@github.com>2019-01-31 18:55:58 -0800
commitd66b6b7d9282b1757e3f4ff047268798d467af55 (patch)
treeb693fd27da6d3c6c8483415f25e1451d5e1ea8a4 /netci.groovy
parent162d0383340ac727b9a88a5be7bc4d747d8d7a84 (diff)
downloadcoreclr-d66b6b7d9282b1757e3f4ff047268798d467af55.tar.gz
coreclr-d66b6b7d9282b1757e3f4ff047268798d467af55.tar.bz2
coreclr-d66b6b7d9282b1757e3f4ff047268798d467af55.zip
Increase arm64 timeout. (#22298)
* increase arm64 debug/checked timeout. * Increase timeout only for corefx jobs.
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy6
1 files changed, 6 insertions, 0 deletions
diff --git a/netci.groovy b/netci.groovy
index d68d0ae580..5cecb55d7f 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -940,6 +940,12 @@ def static setJobTimeout(newJob, isPR, architecture, configuration, scenario, is
}
else if (isCoreFxScenario(scenario)) {
timeout = 360
+ if (architecture == 'arm64') {
+ if (configuration == 'Checked' || configuration == 'Debug') {
+ // ARM64 checked/debug is slow, see #17414.
+ timeout *= 3;
+ }
+ }
}
else if (isJitStressScenario(scenario)) {
timeout = 300