diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-06-06 08:51:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-06 08:51:46 -0400 |
commit | 0648f6d70dc79e986f6b3c5821a9ebb5f045cfc7 (patch) | |
tree | 2e6440b4cdeb3aea99facac3d6fd4819c30da13d | |
parent | e5b2c5ebb89b962faec2937b3befa01ced90c579 (diff) |
ci: bump timeout minutes due to slow mac aarch64 runner (#24116)
For the future...
-rwxr-xr-x | .github/workflows/ci.generate.ts | 2 | ||||
-rw-r--r-- | .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 81f7b7104..e86e13971 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": 120, + "timeout-minutes": 150, defaults: { run: { // GH actions does not fail fast by default on diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d6367e4b..81af5dc28 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: 120 + timeout-minutes: 150 defaults: run: shell: bash |