DEV: bump timeout for non-scheduled builds (#924)
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:
parent
e72554ed7f
commit
8057b695b7
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -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 }}
|
||||
|
|
Loading…
Add table
Reference in a new issue