aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar rmistry <rmistry@google.com>2015-09-02 05:23:23 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-09-02 05:23:23 -0700
commita3710c32623c23347b7e09e3e9e559dd8429287e (patch)
treedd83b8c6c44ec3ecfb9149edc2b2afed8bf89a7b /infra
parent9e707a04127f35b199bb943b6f50ff4cf60506f8 (diff)
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
Diffstat (limited to 'infra')
-rw-r--r--infra/branch-config/cq.cfg7
1 files changed, 7 insertions, 0 deletions
diff --git a/infra/branch-config/cq.cfg b/infra/branch-config/cq.cfg
index f95292d13b..d4d37809d3 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 {}