Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/e2e-mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,12 @@ jobs:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
needs: quarantine-lint
runs-on: macos-latest
timeout-minutes: 45
# A cold .app cache means a full Xcode release build plus a simulator
# boot, which measured 44m50s on main — ten seconds under the old
# 45-minute budget, so any slower runner killed the job and Actions
# reported it as `cancelled`, not `timed out`. 75 leaves real headroom
# for a cold build; a warm fingerprint hit still finishes in minutes.
timeout-minutes: 75
outputs:
app-artifact: ${{ steps.vars.outputs.app-artifact }}
env:
Expand Down Expand Up @@ -981,7 +986,9 @@ jobs:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
needs: quarantine-lint
runs-on: macos-latest
timeout-minutes: 45
# Same cold-cache build as the required variant, so it carries the same
# budget. Keeping the two in step stops one from timing out alone.
timeout-minutes: 75
outputs:
app-artifact: ${{ steps.vars.outputs.app-artifact }}
skip: ${{ steps.preflight.outputs.skip }}
Expand Down
Loading