From 6926d559a6c0d426a8641a99046d08a91f8b2ec5 Mon Sep 17 00:00:00 2001 From: Michael Fitz-Payne Date: Fri, 24 Jan 2025 09:56:16 +1000 Subject: [PATCH] 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). --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a67d57ccd..e6384ffcc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }}