aboutsummaryrefslogtreecommitdiff
path: root/cros_utils/buildbot_utils.py
diff options
context:
space:
mode:
authorManoj Gupta <manojgupta@google.com>2019-01-25 13:17:41 -0800
committerManoj Gupta <manojgupta@chromium.org>2019-01-26 05:09:48 +0000
commitb1cba791a63a24cac5b4d7cd68f5e0941a9afe62 (patch)
treebbbd0abc7d39d45b3deed58eaf1e1ce296781a07 /cros_utils/buildbot_utils.py
parent1bc9e7cbe541f9dae39d78c6a086078a75fd20b4 (diff)
downloadtoolchain-utils-b1cba791a63a24cac5b4d7cd68f5e0941a9afe62.tar.gz
[toolchain-utils] Increase timeout for tryjobs.
Toolchain trybob images are taking longer to build and causing performance jobsto hit a timout limit. This CL increases the timeout limit to 12 hours. BUG=chromium:925534 TEST=None Change-Id: Icbb8c56d70f135a574a7176b2f3b5dd5c4504710 Reviewed-on: https://chromium-review.googlesource.com/c/1436497 Tested-by: Manoj Gupta <manojgupta@chromium.org> Reviewed-by: Caroline Tice <cmtice@chromium.org>
Diffstat (limited to 'cros_utils/buildbot_utils.py')
-rw-r--r--cros_utils/buildbot_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cros_utils/buildbot_utils.py b/cros_utils/buildbot_utils.py
index bfc048ee..0d93765a 100644
--- a/cros_utils/buildbot_utils.py
+++ b/cros_utils/buildbot_utils.py
@@ -18,8 +18,8 @@ INITIAL_SLEEP_TIME = 7200 # 2 hours; wait time before polling buildbot.
SLEEP_TIME = 600 # 10 minutes; time between polling of buildbot.
# Some of our slower builders (llvm-next) are taking more
-# than 8 hours. So, increase this TIME_OUT to 10.5 hours.
-TIME_OUT = 37800 # Decide the build is dead or will never finish
+# than 11 hours. So, increase this TIME_OUT to 12 hours.
+TIME_OUT = 43200 # Decide the build is dead or will never finish
class BuildbotTimeout(Exception):