File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 104
104
required : false
105
105
default : " "
106
106
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
+
107
113
jobs :
108
114
pod-lib-lint :
109
115
# Run on the main repo's scheduled jobs or pull requests and manual workflow invocations.
@@ -139,7 +145,7 @@ jobs:
139
145
- uses : nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3
140
146
if : contains(join(inputs.platforms), matrix.platform) || matrix.os == 'macos-14'
141
147
with :
142
- timeout_minutes : 15
148
+ timeout_minutes : ${{ inputs.timeout_minutes }}
143
149
max_attempts : 3
144
150
retry_wait_seconds : 120
145
151
command : |
Original file line number Diff line number Diff line change @@ -397,6 +397,7 @@ jobs:
397
397
platforms : iOS
398
398
allow_warnings : true
399
399
analyze : false # TODO(#9565, b/227461966): Remove when absl is fixed.
400
+ timeout_minutes : 30
400
401
401
402
# `pod lib lint` takes a long time so only run the other platforms and static frameworks build in the cron.
402
403
pod-lib-lint-cron :
You can’t perform that action at this time.
0 commit comments