Skip to content

Commit 0e51f70

Browse files
authored
fix: Give Firestore more time in archiving.yml (#15631)
1 parent 0a16fd1 commit 0e51f70

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/archiving.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262
- name: Setup project and archive
6363
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
6464
with:
65-
timeout_minutes: 20
65+
# Firestore gets a 60 min. timeout, everything else gets 20 min.
66+
timeout_minutes: ${{ matrix.pod == "FirebaseFirestore" && 60 || 20 }}
6667
max_attempts: 3
6768
retry_wait_seconds: 300
6869
command: scripts/test_archiving.sh ${{ matrix.pod }} ${{ matrix.target }} ArchiveOutputs/${{ matrix.target }}.xcarchive

0 commit comments

Comments
 (0)