From 5bbffa83bdaf553b0b53b44550272a2948e2f906 Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Fri, 22 Mar 2024 20:41:24 +0800 Subject: [PATCH] Increase build time for arm64 scheduled build (#785) Scheduled build for arm64 running on 2cores is timing out at 30 minutes. Let's give it some more time --- .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 c7f5c6a..b8d225e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: arch: [amd64, arm64] - timeout-minutes: 30 + timeout-minutes: ${{ (github.event_name != 'schedule' && 30) || ((matrix.arch == 'arm64' && 45) || 30) }} steps: - name: Install Docker if: ${{ matrix.arch == 'arm64' }} -- 2.25.1