mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Fix the try build (#30642)
This commit is contained in:
parent
854863f73e
commit
3fde61f2e5
2 changed files with 8 additions and 4 deletions
6
.github/workflows/linux.yml
vendored
6
.github/workflows/linux.yml
vendored
|
@ -4,6 +4,7 @@ on:
|
|||
inputs:
|
||||
production:
|
||||
required: false
|
||||
default: false
|
||||
type: boolean
|
||||
wpt:
|
||||
required: false
|
||||
|
@ -26,6 +27,7 @@ on:
|
|||
inputs:
|
||||
production:
|
||||
required: false
|
||||
default: false
|
||||
type: boolean
|
||||
wpt:
|
||||
default: "test"
|
||||
|
@ -140,7 +142,7 @@ jobs:
|
|||
needs: ["build"]
|
||||
uses: ./.github/workflows/linux-wpt.yml
|
||||
with:
|
||||
production: ${{ inputs.production }}
|
||||
production: ${{ inputs.production == 'true' }}
|
||||
wpt: ${{ inputs.wpt }}
|
||||
layout: "layout-2020"
|
||||
|
||||
|
@ -150,7 +152,7 @@ jobs:
|
|||
needs: ["build"]
|
||||
uses: ./.github/workflows/linux-wpt.yml
|
||||
with:
|
||||
production: ${{ inputs.production }}
|
||||
production: ${{ inputs.production == 'true' }}
|
||||
wpt: ${{ inputs.wpt }}
|
||||
layout: "layout-2013"
|
||||
|
||||
|
|
6
.github/workflows/mac.yml
vendored
6
.github/workflows/mac.yml
vendored
|
@ -5,6 +5,7 @@ on:
|
|||
inputs:
|
||||
production:
|
||||
required: false
|
||||
default: false
|
||||
type: boolean
|
||||
wpt-layout:
|
||||
required: false
|
||||
|
@ -24,6 +25,7 @@ on:
|
|||
inputs:
|
||||
production:
|
||||
required: false
|
||||
default: false
|
||||
type: boolean
|
||||
wpt-layout:
|
||||
required: false
|
||||
|
@ -130,7 +132,7 @@ jobs:
|
|||
needs: ["build"]
|
||||
uses: ./.github/workflows/mac-wpt.yml
|
||||
with:
|
||||
production: ${{ inputs.production }}
|
||||
production: ${{ inputs.production == 'true' }}
|
||||
layout: "layout-2020"
|
||||
|
||||
wpt-2013:
|
||||
|
@ -139,7 +141,7 @@ jobs:
|
|||
needs: ["build"]
|
||||
uses: ./.github/workflows/mac-wpt.yml
|
||||
with:
|
||||
production: ${{ inputs.production }}
|
||||
production: ${{ inputs.production == 'true' }}
|
||||
layout: "layout-2013"
|
||||
|
||||
result:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue