Merge pull request #1349 from lightpanda-io/build-timeout
Some checks failed
e2e-test / zig build release (push) Has been cancelled
e2e-test / demo-scripts (push) Has been cancelled
e2e-test / cdp-and-hyperfine-bench (push) Has been cancelled
e2e-test / perf-fmt (push) Has been cancelled
zig-test / zig build dev (push) Has been cancelled
zig-test / browser fetch (push) Has been cancelled
zig-test / zig test (push) Has been cancelled
zig-test / perf-fmt (push) Has been cancelled
nightly build / build-linux-x86_64 (push) Has been cancelled
nightly build / build-linux-aarch64 (push) Has been cancelled
nightly build / build-macos-aarch64 (push) Has been cancelled
nightly build / build-macos-x86_64 (push) Has been cancelled
wpt / web platform tests json output (push) Has been cancelled
wpt / perf-fmt (push) Has been cancelled
e2e-integration-test / zig build release (push) Has been cancelled
e2e-integration-test / demo-integration-scripts (push) Has been cancelled

ci: increase timeout limit for build
This commit is contained in:
Pierre Tachoire
2026-01-09 12:34:18 +01:00
committed by GitHub

View File

@@ -27,7 +27,7 @@ jobs:
OS: linux OS: linux
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
timeout-minutes: 15 timeout-minutes: 20
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
@@ -62,6 +62,7 @@ jobs:
allowUpdates: true allowUpdates: true
artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }} artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }}
tag: ${{ env.RELEASE }} tag: ${{ env.RELEASE }}
makeLatest: true
build-linux-aarch64: build-linux-aarch64:
env: env:
@@ -69,7 +70,7 @@ jobs:
OS: linux OS: linux
runs-on: ubuntu-22.04-arm runs-on: ubuntu-22.04-arm
timeout-minutes: 15 timeout-minutes: 20
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -104,6 +105,7 @@ jobs:
allowUpdates: true allowUpdates: true
artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }} artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }}
tag: ${{ env.RELEASE }} tag: ${{ env.RELEASE }}
makeLatest: true
build-macos-aarch64: build-macos-aarch64:
env: env:
@@ -113,7 +115,7 @@ jobs:
# macos-14 runs on arm CPU. see # macos-14 runs on arm CPU. see
# https://github.com/actions/runner-images?tab=readme-ov-file # https://github.com/actions/runner-images?tab=readme-ov-file
runs-on: macos-14 runs-on: macos-14
timeout-minutes: 15 timeout-minutes: 20
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -148,6 +150,7 @@ jobs:
allowUpdates: true allowUpdates: true
artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }} artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }}
tag: ${{ env.RELEASE }} tag: ${{ env.RELEASE }}
makeLatest: true
build-macos-x86_64: build-macos-x86_64:
env: env:
@@ -155,7 +158,7 @@ jobs:
OS: macos OS: macos
runs-on: macos-14-large runs-on: macos-14-large
timeout-minutes: 15 timeout-minutes: 20
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -190,3 +193,4 @@ jobs:
allowUpdates: true allowUpdates: true
artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }} artifacts: lightpanda-${{ env.ARCH }}-${{ env.OS }}
tag: ${{ env.RELEASE }} tag: ${{ env.RELEASE }}
makeLatest: true