Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
rust:
name: Rust / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
# No CI job should be able to hang for the 6h GitHub default — a slow/stuck Windows `cargo test`
# once blocked every open PR from merging. Generous ceiling (observed worst ~45min) that fails a
# genuinely-hung job fast enough to rerun, without false-failing a legitimately-slow run.
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -64,6 +68,7 @@ jobs:
wasm:
name: WASM / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 45
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -117,6 +122,7 @@ jobs:
node:
name: Node ${{ matrix.node }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
needs: [wasm]
strategy:
fail-fast: false
Expand Down Expand Up @@ -177,6 +183,7 @@ jobs:
pack-install:
name: pack+install / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 30
needs: [node]
strategy:
fail-fast: false
Expand Down Expand Up @@ -204,6 +211,7 @@ jobs:
bench:
name: Bench (smoke)
runs-on: ubuntu-latest
timeout-minutes: 20
needs: [node]
steps:
- uses: actions/checkout@v4
Expand Down
Loading