mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
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.
This commit is contained in:
parent
6a04bbe076
commit
5bcea1a9f4
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.generate.ts
vendored
2
.github/workflows/ci.generate.ts
vendored
|
@ -354,7 +354,7 @@ const ci = {
|
||||||
needs: ["pre_build"],
|
needs: ["pre_build"],
|
||||||
if: "${{ needs.pre_build.outputs.skip_build != 'true' }}",
|
if: "${{ needs.pre_build.outputs.skip_build != 'true' }}",
|
||||||
"runs-on": "${{ matrix.runner }}",
|
"runs-on": "${{ matrix.runner }}",
|
||||||
"timeout-minutes": 150,
|
"timeout-minutes": 180,
|
||||||
defaults: {
|
defaults: {
|
||||||
run: {
|
run: {
|
||||||
// GH actions does not fail fast by default on
|
// GH actions does not fail fast by default on
|
||||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -48,7 +48,7 @@ jobs:
|
||||||
- pre_build
|
- pre_build
|
||||||
if: '${{ needs.pre_build.outputs.skip_build != ''true'' }}'
|
if: '${{ needs.pre_build.outputs.skip_build != ''true'' }}'
|
||||||
runs-on: '${{ matrix.runner }}'
|
runs-on: '${{ matrix.runner }}'
|
||||||
timeout-minutes: 150
|
timeout-minutes: 180
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in a new issue