Increase the SDE bot timeout The 32-bit SDE bots have been creeping up on 1 hour and finally exceeded it. Bump the timeout to 3 hours. Change-Id: I63580793dd4cd64b83fc1e36cbb3ab8baf869233 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/69207 Reviewed-by: Bob Beck <bbe@google.com>
diff --git a/generated/cr-buildbucket.cfg b/generated/cr-buildbucket.cfg index 88b755f..9c26bab 100644 --- a/generated/cr-buildbucket.cfg +++ b/generated/cr-buildbucket.cfg
@@ -627,7 +627,7 @@ ' "run_ssl_tests": false,' ' "sde": true' '}' - execution_timeout_secs: 3600 + execution_timeout_secs: 10800 caches { name: "gocache" path: "gocache" @@ -1238,7 +1238,7 @@ ' "run_ssl_tests": false,' ' "sde": true' '}' - execution_timeout_secs: 3600 + execution_timeout_secs: 10800 caches { name: "gocache" path: "gocache" @@ -1631,7 +1631,7 @@ ' "run_ssl_tests": false,' ' "sde": true' '}' - execution_timeout_secs: 3600 + execution_timeout_secs: 10800 caches { name: "gocache" path: "gocache" @@ -1875,7 +1875,7 @@ ' "run_ssl_tests": false,' ' "sde": true' '}' - execution_timeout_secs: 3600 + execution_timeout_secs: 10800 caches { name: "gocache" path: "gocache"
diff --git a/main.star b/main.star index 1447f91..a5d1e4b 100755 --- a/main.star +++ b/main.star
@@ -284,7 +284,7 @@ } # SDE tests take longer to run. -SDE_TIMEOUT = 60 * time.minute +SDE_TIMEOUT = 3 * 60 * time.minute # TODO(davidben): Switch the BoringSSL recipe to specify most flags in # properties rather than parsing names. Then we can add new configurations