Skip to content

Commit

Permalink
DEV: bump timeout for non-scheduled builds (#924)
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
fitzy101 authored Jan 24, 2025
1 parent e72554e commit 8057b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 8057b69

Please sign in to comment.