Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Nattress <nattress@gmail.com>2017-01-13 03:55:51 +0300
committerSimon Nattress <nattress@gmail.com>2017-01-13 03:55:51 +0300
commitc2a2028eba7419e67b87e7b6e760b5d1fb5e1bfc (patch)
treeb8139b16bca8c85b343b02edeca2fdd345c44405
parent59133e10e2e13df6943b837f6cc813429e326f6b (diff)
Set larger timeout for push job
The CoreCLR tests need more than the standard 2 hours allowed by CI.
-rw-r--r--netci.groovy2
1 files changed, 2 insertions, 0 deletions
diff --git a/netci.groovy b/netci.groovy
index 83d30da9a..bd516703e 100644
--- a/netci.groovy
+++ b/netci.groovy
@@ -64,6 +64,8 @@ def osList = ['Ubuntu', 'OSX', 'Windows_NT']
Utilities.addGithubPRTriggerForBranch(newJob, branch, prJobDescription)
}
else {
+ // Set a large timeout since the default (2 hours) is insufficient
+ Utilities.setJobTimeout(newJob, 1440)
Utilities.addGithubPushTrigger(newJob)
}
}