DEV: bump timeout for non-scheduled builds ()

The most recent build timed out at 30 minutes. Bump timeout temporarily
to get a gauge on how long self-hosted builds take (push to Dockerhub
looks to be slower than Github-hosted runners).
This commit is contained in:
Michael Fitz-Payne 2025-01-24 11:21:00 +10:00 committed by GitHub
parent e72554ed7f
commit 8057b695b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
arch: [amd64, arm64]
timeout-minutes: ${{ (github.event_name == 'schedule' && 90) || ((matrix.arch == 'arm64' && 45) || 30) }}
timeout-minutes: ${{ (github.event_name == 'schedule' && 90) || 45 }}
needs: timestamp
env:
TIMESTAMP: ${{ needs.timestamp.outputs.timestamp }}