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:
|
inputs:
|
||||||
production:
|
production:
|
||||||
required: false
|
required: false
|
||||||
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
wpt:
|
wpt:
|
||||||
required: false
|
required: false
|
||||||
|
@ -26,6 +27,7 @@ on:
|
||||||
inputs:
|
inputs:
|
||||||
production:
|
production:
|
||||||
required: false
|
required: false
|
||||||
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
wpt:
|
wpt:
|
||||||
default: "test"
|
default: "test"
|
||||||
|
@ -140,7 +142,7 @@ jobs:
|
||||||
needs: ["build"]
|
needs: ["build"]
|
||||||
uses: ./.github/workflows/linux-wpt.yml
|
uses: ./.github/workflows/linux-wpt.yml
|
||||||
with:
|
with:
|
||||||
production: ${{ inputs.production }}
|
production: ${{ inputs.production == 'true' }}
|
||||||
wpt: ${{ inputs.wpt }}
|
wpt: ${{ inputs.wpt }}
|
||||||
layout: "layout-2020"
|
layout: "layout-2020"
|
||||||
|
|
||||||
|
@ -150,7 +152,7 @@ jobs:
|
||||||
needs: ["build"]
|
needs: ["build"]
|
||||||
uses: ./.github/workflows/linux-wpt.yml
|
uses: ./.github/workflows/linux-wpt.yml
|
||||||
with:
|
with:
|
||||||
production: ${{ inputs.production }}
|
production: ${{ inputs.production == 'true' }}
|
||||||
wpt: ${{ inputs.wpt }}
|
wpt: ${{ inputs.wpt }}
|
||||||
layout: "layout-2013"
|
layout: "layout-2013"
|
||||||
|
|
||||||
|
|
6
.github/workflows/mac.yml
vendored
6
.github/workflows/mac.yml
vendored
|
@ -5,6 +5,7 @@ on:
|
||||||
inputs:
|
inputs:
|
||||||
production:
|
production:
|
||||||
required: false
|
required: false
|
||||||
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
wpt-layout:
|
wpt-layout:
|
||||||
required: false
|
required: false
|
||||||
|
@ -24,6 +25,7 @@ on:
|
||||||
inputs:
|
inputs:
|
||||||
production:
|
production:
|
||||||
required: false
|
required: false
|
||||||
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
wpt-layout:
|
wpt-layout:
|
||||||
required: false
|
required: false
|
||||||
|
@ -130,7 +132,7 @@ jobs:
|
||||||
needs: ["build"]
|
needs: ["build"]
|
||||||
uses: ./.github/workflows/mac-wpt.yml
|
uses: ./.github/workflows/mac-wpt.yml
|
||||||
with:
|
with:
|
||||||
production: ${{ inputs.production }}
|
production: ${{ inputs.production == 'true' }}
|
||||||
layout: "layout-2020"
|
layout: "layout-2020"
|
||||||
|
|
||||||
wpt-2013:
|
wpt-2013:
|
||||||
|
@ -139,7 +141,7 @@ jobs:
|
||||||
needs: ["build"]
|
needs: ["build"]
|
||||||
uses: ./.github/workflows/mac-wpt.yml
|
uses: ./.github/workflows/mac-wpt.yml
|
||||||
with:
|
with:
|
||||||
production: ${{ inputs.production }}
|
production: ${{ inputs.production == 'true' }}
|
||||||
layout: "layout-2013"
|
layout: "layout-2013"
|
||||||
|
|
||||||
result:
|
result:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue