Skip to content

Commit

Permalink
chore: Allow manually starting stress tests in CI (#1243)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjameswh authored Sep 13, 2023
1 parent 2e52f01 commit 9f595c4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/stress.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
name: Stress tests

on:
workflow_dispatch:
inputs:
ref:
type: string
description: Git ref to run tests on
required: true
default: main
test-type:
description: Type of test to run
options:
- ci-stress
- ci-nightly
required: true
type: string
test-timeout-minutes:
description: 'Timeout for the test, in minutes (stress: 20, nightly: 360)'
required: true
type: number
default: 360
reuse-v8-context:
description: Whether to enable the "reuse V8 context" feature
required: true
type: boolean
default: true

workflow_call:
inputs:
test-type:
Expand Down

0 comments on commit 9f595c4

Please sign in to comment.