From dfd3fcee0e2be2b7878923b6c38b362f9b839d1d Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Wed, 10 Jul 2024 10:46:30 +0800 Subject: [PATCH] Bump timeout for arm64 scheduled builds to 60 mins. (#815) We are hitting timeouts at 45mins. --- .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 b8d225e..7bdcaec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: arch: [amd64, arm64] - timeout-minutes: ${{ (github.event_name != 'schedule' && 30) || ((matrix.arch == 'arm64' && 45) || 30) }} + timeout-minutes: ${{ (github.event_name != 'schedule' && 30) || ((matrix.arch == 'arm64' && 60) || 30) }} steps: - name: Install Docker if: ${{ matrix.arch == 'arm64' }} -- 2.25.1