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 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+
107113jobs :
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 : |
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments