From 421ee1cffb226c237532bc82c61fa5c42625eac5 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Fri, 1 Nov 2024 22:06:10 -0700 Subject: [PATCH] ci: retry lfs pull (#33918) * retry * pin * name --- .github/workflows/selfdrive_tests.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/selfdrive_tests.yaml b/.github/workflows/selfdrive_tests.yaml index 6e17f5a4808658..eba999e260fa2e 100644 --- a/.github/workflows/selfdrive_tests.yaml +++ b/.github/workflows/selfdrive_tests.yaml @@ -41,7 +41,12 @@ jobs: - uses: actions/checkout@v4 with: submodules: true - - run: git lfs pull + - name: Getting LFS files + uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e + with: + timeout_minutes: 2 + max_attempts: 3 + command: git lfs pull - name: Build devel timeout-minutes: 1 run: TARGET_DIR=$STRIPPED_DIR release/build_devel.sh