diff options
author | sagudev <16504129+sagudev@users.noreply.github.com> | 2025-04-18 08:38:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-18 06:38:28 +0000 |
commit | bd9242acfa599ca6bc3d79c10edfeb7cb54246ae (patch) | |
tree | 8a70963131a6e5925d30e3a6e2b9495339c13adb /.github/workflows/dispatch-workflow.yml | |
parent | 5e2d42e94459af76c8752fef934a7dde8ac5b41a (diff) | |
download | servo-bd9242acfa599ca6bc3d79c10edfeb7cb54246ae.tar.gz servo-bd9242acfa599ca6bc3d79c10edfeb7cb54246ae.zip |
CI: Add `number_of_chunks` (#36584)
This allows changing number of chunks used for WPT testing (sometimes
useful for WebGPU).
Testing: Manual try runs
Fixes: #30062
---------
Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
Diffstat (limited to '.github/workflows/dispatch-workflow.yml')
-rw-r--r-- | .github/workflows/dispatch-workflow.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/dispatch-workflow.yml b/.github/workflows/dispatch-workflow.yml index c938b1acd39..472f4813cd7 100644 --- a/.github/workflows/dispatch-workflow.yml +++ b/.github/workflows/dispatch-workflow.yml @@ -14,6 +14,9 @@ on: wpt: required: true type: boolean + number-of-wpt-chunks: + required: true + type: number unit-tests: required: true type: boolean @@ -57,6 +60,7 @@ jobs: with: profile: ${{ inputs.profile }} wpt: ${{ inputs.wpt }} + number-of-wpt-chunks: ${{ inputs.number-of-wpt-chunks }} unit-tests: ${{ inputs.unit-tests }} build-libservo: ${{ inputs.build-libservo }} wpt-args: ${{ inputs.wpt-args }} |