From d66b6b7d9282b1757e3f4ff047268798d467af55 Mon Sep 17 00:00:00 2001 From: Sergey Andreenko Date: Thu, 31 Jan 2019 18:55:58 -0800 Subject: [PATCH] Increase arm64 timeout. (#22298) * increase arm64 debug/checked timeout. * Increase timeout only for corefx jobs. --- netci.groovy | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- 2.7.4