mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Customizable wpt options and profile in workflows (#30912)
* wpt -> wpt-sync * Add profile configuration option * Add wpt (for custom tests selection) to CI * Renaming of wpt-* options * fixup! do renames also in scripts * fixup! profile * Fix try labels
This commit is contained in:
parent
81f5157522
commit
1f0f50b22b
7 changed files with 105 additions and 61 deletions
14
.github/workflows/mac.yml
vendored
14
.github/workflows/mac.yml
vendored
|
@ -7,6 +7,10 @@ on:
|
|||
required: false
|
||||
default: "release"
|
||||
type: string
|
||||
wpt-tests-to-run:
|
||||
default: ""
|
||||
required: false
|
||||
type: string
|
||||
wpt-layout:
|
||||
required: false
|
||||
type: string
|
||||
|
@ -28,6 +32,10 @@ on:
|
|||
default: "release"
|
||||
type: choice
|
||||
options: ["release", "debug", "production"]
|
||||
wpt-tests-to-run:
|
||||
default: ""
|
||||
required: false
|
||||
type: string
|
||||
wpt-layout:
|
||||
required: false
|
||||
type: choice
|
||||
|
@ -147,7 +155,8 @@ jobs:
|
|||
uses: ./.github/workflows/mac-wpt.yml
|
||||
with:
|
||||
profile: ${{ inputs.profile }}
|
||||
layout: "layout-2020"
|
||||
wpt-layout: "layout-2020"
|
||||
wpt-tests-to-run: ${{ inputs.wpt-tests-to-run }}
|
||||
secrets: inherit
|
||||
|
||||
wpt-2013:
|
||||
|
@ -157,7 +166,8 @@ jobs:
|
|||
uses: ./.github/workflows/mac-wpt.yml
|
||||
with:
|
||||
profile: ${{ inputs.profile }}
|
||||
layout: "layout-2013"
|
||||
wpt-layout: "layout-2013"
|
||||
wpt-tests-to-run: ${{ inputs.wpt-tests-to-run }}
|
||||
secrets: inherit
|
||||
|
||||
result:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue