From 68f954dea702ff3e04414546146192c96f9910ba Mon Sep 17 00:00:00 2001 From: Nick Cooke <36927374+ncooke3@users.noreply.github.com> Date: Fri, 19 Dec 2025 14:25:25 -0500 Subject: [PATCH] fix: Give Firestore more time in archiving.yml --- .github/workflows/archiving.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/archiving.yml b/.github/workflows/archiving.yml index c21e6ac479d..4f35f31fda9 100644 --- a/.github/workflows/archiving.yml +++ b/.github/workflows/archiving.yml @@ -62,7 +62,8 @@ jobs: - name: Setup project and archive uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3 with: - timeout_minutes: 20 + # Firestore gets a 60 min. timeout, everything else gets 20 min. + timeout_minutes: ${{ matrix.pod == "FirebaseFirestore" && 60 || 20 }} max_attempts: 3 retry_wait_seconds: 300 command: scripts/test_archiving.sh ${{ matrix.pod }} ${{ matrix.target }} ArchiveOutputs/${{ matrix.target }}.xcarchive