Skip to content

Commit c910e44

Browse files
committed
test: Enable auto retries and disable manual retries on perf A/B test
We're observing spurious failures in the perf A/B pipeline. Some of them are gone in retries. To reduce unnecessary manual effort, enables automatic retries and disables manual retries on the pipeline. Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent d88ddae commit c910e44

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.buildkite/pipeline_perf.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ def build_group(test):
114114
{"exit_status": -1, "limit": 1},
115115
]
116116
}
117+
if REVISION_A:
118+
# Enable automatic retry and disable manual retries to suppress spurious issues.
119+
test_data["retry"]["automatic"].append({"exit_status": 1, "limit": 1})
120+
test_data["retry"]["manual"] = False
117121
group_steps.append(build_group(test_data))
118122

119123
pipeline = {

0 commit comments

Comments
 (0)