Up pri-1 timeouts again
authorBruce Forstall <brucefo@microsoft.com>
Tue, 12 Dec 2017 01:53:25 +0000 (17:53 -0800)
committerBruce Forstall <brucefo@microsoft.com>
Tue, 12 Dec 2017 01:53:25 +0000 (17:53 -0800)
180 minutes was still not enough; we were still getting timeouts.
Up it to 240 minutes.

netci.groovy

index 5c21777..28b0c38 100755 (executable)
@@ -414,7 +414,7 @@ def static setTestJobTimeOut(newJob, isPR, architecture, scenario) {
     else if (!(scenario == 'default' && isPR == true)) {
         // Pri-1 test builds take a long time. Default PR jobs are Pri-0; everything else is Pri-1
         // (see calculateBuildCommands()). So up the Pri-1 build jobs timeout.
-        Utilities.setJobTimeout(newJob, 180)
+        Utilities.setJobTimeout(newJob, 240)
     }
     // Non-test jobs use the default timeout value.
 }