From: Sergey Andreenko Date: Fri, 1 Feb 2019 02:55:58 +0000 (-0800) Subject: Increase arm64 timeout. (#22298) X-Git-Tag: accepted/tizen/unified/20190813.215958~169 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d66b6b7d9282b1757e3f4ff047268798d467af55;p=platform%2Fupstream%2Fcoreclr.git Increase arm64 timeout. (#22298) * increase arm64 debug/checked timeout. * Increase timeout only for corefx jobs. --- diff --git a/netci.groovy b/netci.groovy index d68d0ae..5cecb55 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