From 5bcea1a9f4eb95cd764047869a17ed74df8f60d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 20 Sep 2024 01:05:20 +0100 Subject: [PATCH] ci: increase timeout to 180 minutes (#25750) Mac aarch64 is failing with timeout after 150 minutes :( we'll address it after Deno 2 is released but for now just increase the timeout. --- .github/workflows/ci.generate.ts | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 8cc57619b2..35020a5f8c 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -354,7 +354,7 @@ const ci = { needs: ["pre_build"], if: "${{ needs.pre_build.outputs.skip_build != 'true' }}", "runs-on": "${{ matrix.runner }}", - "timeout-minutes": 150, + "timeout-minutes": 180, defaults: { run: { // GH actions does not fail fast by default on diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a10f40630..280eb7cb84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: - pre_build if: '${{ needs.pre_build.outputs.skip_build != ''true'' }}' runs-on: '${{ matrix.runner }}' - timeout-minutes: 150 + timeout-minutes: 180 defaults: run: shell: bash