From e8e7e0448f51ed9646c484123fd4953442545c86 Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Wed, 21 Jun 2023 10:00:00 -0700 Subject: [PATCH] chore(ci): Retry `make check-component-docs` check (#17718) This check seems to be flakey but we haven't been able to reliably reproduce. Just retry for now. In the future we hope to rewrite this script into Rust. Signed-off-by: Jesse Szwedko --------- Signed-off-by: Jesse Szwedko --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 76ad3ce2e27db..23497b73cf967 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -129,7 +129,11 @@ jobs: run: make check-markdown - name: Check Component Docs if: needs.changes.outputs.source == 'true' || needs.changes.outputs.component_docs == 'true' - run: make check-component-docs + uses: nick-fields/retry@v2 + with: + max_attempts: 10 + timeout_seconds: 900 + command: make check-component-docs - name: Check Rust Docs if: needs.changes.outputs.source == 'true' run: cd rust-doc && make docs