Skip to content

Commit 27ba1c1

Browse files
committed
fix(github-actions): set the number of flaky test attempts on CI RBE executions
1 parent fb91b19 commit 27ba1c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • github-actions/bazel/configure-remote

github-actions/bazel/configure-remote/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ async function main() {
3535

3636
if (bazelRcPath) {
3737
let content = await readFileGracefully(bazelRcPath);
38-
content += `\nbuild --config=${configMode}`;
38+
content += ['', `build --config=${configMode}`, 'test --flaky_test_attempts=3'].join('\n');
3939
if (trustedBuild) {
4040
content += `\nbuild --config=trusted-build`;
4141
}

0 commit comments

Comments
 (0)