From a3710c32623c23347b7e09e3e9e559dd8429287e Mon Sep 17 00:00:00 2001 From: rmistry Date: Wed, 2 Sep 2015 05:23:23 -0700 Subject: [PATCH] Specify try_job_retry_config for Skia try jobs Retry config support was added to the CQ in https://chromereviews.googleplex.com/240527013/ This CL uses the retry config in Skia's cq.cfg file. CQ's default failure_retry_weight is 1. We set it to 2 which will immediately go beyond the try job quota and will not retry for failures. It will retry for transient errors. BUG=chromium:522460 TBR=mtklein NOTRY=true Review URL: https://codereview.chromium.org/1330473002 --- infra/branch-config/cq.cfg | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/infra/branch-config/cq.cfg b/infra/branch-config/cq.cfg index f95292d..d4d3780 100644 --- a/infra/branch-config/cq.cfg +++ b/infra/branch-config/cq.cfg @@ -45,6 +45,13 @@ verifiers { name: "client.skia.fyi" builders { name: "skia_presubmit-Trybot" } } + try_job_retry_config { + try_job_retry_quota: 1 + global_retry_quota: 2 + failure_retry_weight: 2 + transient_failure_retry_weight: 1 + timeout_retry_weight: 2 + } } sign_cla {} -- 2.7.4