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
5 changes: 3 additions & 2 deletions .github/workflows/stress-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ jobs:
stress-test:
name: Stress Test
runs-on: ubuntu-latest
# Leave ~20 minutes of headroom for toolchain install, cache restore, and build.
timeout-minutes: ${{ fromJson(inputs.duration_minutes || '30') + 20 }}
# Accommodates the documented max duration_minutes of 50 plus toolchain install,
# cache restore, and build headroom.
timeout-minutes: 75
env:
RUST_BACKTRACE: 1
DURATION_MINUTES: ${{ inputs.duration_minutes || '30' }}
Expand Down
Loading