0

increase timeout for win-official/win32-official builders

Those builders experience timeouts often.
This CL increases the timeout from 6h to 7h to mitigate the issue.

Bug: 1154500, 1155416
Change-Id: I52e86b39649fae38a1fc63481ddf0dc5039bdf62
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2570836
Reviewed-by: Takuto Ikuta <tikuta@chromium.org>
Reviewed-by: Fumitoshi Ukai <ukai@google.com>
Commit-Queue: Junji Watanabe <jwata@google.com>
Auto-Submit: Junji Watanabe <jwata@google.com>
Cr-Commit-Position: refs/heads/master@{#833646}
This commit is contained in:
Junji Watanabe
2020-12-04 08:35:00 +00:00
committed by Chromium LUCI CQ
parent b6c614d540
commit 8d78d6fc56
2 changed files with 8 additions and 4 deletions
infra/config
generated
subprojects
chromium

@ -20340,7 +20340,7 @@ buckets {
cmd: "recipes"
}
properties: "{\"$build/goma\":{\"enable_ats\":true,\"rpc_extra_params\":\"?prod\",\"server_host\":\"goma.chromium.org\",\"use_luci_auth\":true},\"$kitchen\":{\"devshell\":true,\"git_auth\":true},\"$recipe_engine/isolated\":{\"server\":\"https://isolateserver.appspot.com\"},\"builder_group\":\"chromium\",\"recipe\":\"chromium\"}"
execution_timeout_secs: 21600
execution_timeout_secs: 25200
build_numbers: YES
service_account: "chromium-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
experiments {
@ -21461,7 +21461,7 @@ buckets {
cmd: "recipes"
}
properties: "{\"$build/goma\":{\"enable_ats\":true,\"rpc_extra_params\":\"?prod\",\"server_host\":\"goma.chromium.org\",\"use_luci_auth\":true},\"$kitchen\":{\"devshell\":true,\"git_auth\":true},\"$recipe_engine/isolated\":{\"server\":\"https://isolateserver.appspot.com\"},\"builder_group\":\"chromium\",\"recipe\":\"chromium\"}"
execution_timeout_secs: 21600
execution_timeout_secs: 25200
build_numbers: YES
service_account: "chromium-ci-builder@chops-service-accounts.iam.gserviceaccount.com"
experiments {

@ -1235,7 +1235,9 @@ ci.chromium_builder(
),
cores = 32,
os = os.WINDOWS_DEFAULT,
execution_timeout = 6 * time.hour,
# TODO(crbug.com/1155416):
# builds with PGO change take long time.
execution_timeout = 7 * time.hour,
tree_closing = False,
)
@ -1272,7 +1274,9 @@ ci.chromium_builder(
),
cores = 32,
os = os.WINDOWS_DEFAULT,
execution_timeout = 6 * time.hour,
# TODO(crbug.com/1155416):
# builds with PGO change take long time.
execution_timeout = 7 * time.hour,
tree_closing = False,
)