Skip to content

Commit 00ddd7e

Browse files
authored
fix(ci): Extend Firestore's linting job (#15301)
1 parent 65cc900 commit 00ddd7e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/common_cocoapods.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ on:
104104
required: false
105105
default: ""
106106

107+
# The timeout (in minutes) for the linting to complete. Defaults to 15.
108+
timeout_minutes:
109+
type: number
110+
required: false
111+
default: 15
112+
107113
jobs:
108114
pod-lib-lint:
109115
# Run on the main repo's scheduled jobs or pull requests and manual workflow invocations.
@@ -139,7 +145,7 @@ jobs:
139145
- uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
140146
if: contains(join(inputs.platforms), matrix.platform) || matrix.os == 'macos-14'
141147
with:
142-
timeout_minutes: 15
148+
timeout_minutes: ${{ inputs.timeout_minutes }}
143149
max_attempts: 3
144150
retry_wait_seconds: 120
145151
command: |

.github/workflows/firestore.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,7 @@ jobs:
397397
platforms: iOS
398398
allow_warnings: true
399399
analyze: false # TODO(#9565, b/227461966): Remove when absl is fixed.
400+
timeout_minutes: 30
400401

401402
# `pod lib lint` takes a long time so only run the other platforms and static frameworks build in the cron.
402403
pod-lib-lint-cron:

0 commit comments

Comments
 (0)