mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Inherit secrets in the main workflow (#30708)
This is an attempt to fix results in the intermittent tracker.
This commit is contained in:
parent
3c57f2cb44
commit
e0c0b65e2a
3 changed files with 7 additions and 0 deletions
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
|
@ -147,6 +147,7 @@ jobs:
|
||||||
production: ${{ inputs.production == 'true' }}
|
production: ${{ inputs.production == 'true' }}
|
||||||
wpt: ${{ inputs.wpt }}
|
wpt: ${{ inputs.wpt }}
|
||||||
layout: "layout-2020"
|
layout: "layout-2020"
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
wpt-2013:
|
wpt-2013:
|
||||||
if: ${{ github.ref_name == 'try-wpt' || inputs.layout == '2013' || inputs.layout == 'all' }}
|
if: ${{ github.ref_name == 'try-wpt' || inputs.layout == '2013' || inputs.layout == 'all' }}
|
||||||
|
@ -157,6 +158,7 @@ jobs:
|
||||||
production: ${{ inputs.production == 'true' }}
|
production: ${{ inputs.production == 'true' }}
|
||||||
wpt: ${{ inputs.wpt }}
|
wpt: ${{ inputs.wpt }}
|
||||||
layout: "layout-2013"
|
layout: "layout-2013"
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
result:
|
result:
|
||||||
name: Result
|
name: Result
|
||||||
|
|
2
.github/workflows/mac.yml
vendored
2
.github/workflows/mac.yml
vendored
|
@ -137,6 +137,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
production: ${{ inputs.production == 'true' }}
|
production: ${{ inputs.production == 'true' }}
|
||||||
layout: "layout-2020"
|
layout: "layout-2020"
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
wpt-2013:
|
wpt-2013:
|
||||||
if: ${{ github.ref_name == 'try-wpt-mac' || inputs.wpt-layout == '2013' || inputs.wpt-layout == 'all' }}
|
if: ${{ github.ref_name == 'try-wpt-mac' || inputs.wpt-layout == '2013' || inputs.wpt-layout == 'all' }}
|
||||||
|
@ -146,6 +147,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
production: ${{ inputs.production == 'true' }}
|
production: ${{ inputs.production == 'true' }}
|
||||||
layout: "layout-2013"
|
layout: "layout-2013"
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
result:
|
result:
|
||||||
name: Result
|
name: Result
|
||||||
|
|
3
.github/workflows/main.yml
vendored
3
.github/workflows/main.yml
vendored
|
@ -86,6 +86,7 @@ jobs:
|
||||||
uses: ./.github/workflows/windows.yml
|
uses: ./.github/workflows/windows.yml
|
||||||
with:
|
with:
|
||||||
unit-tests: ${{ fromJson(needs.decision.outputs.configuration).unit_tests }}
|
unit-tests: ${{ fromJson(needs.decision.outputs.configuration).unit_tests }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
build-mac:
|
build-mac:
|
||||||
name: Mac
|
name: Mac
|
||||||
|
@ -94,6 +95,7 @@ jobs:
|
||||||
uses: ./.github/workflows/mac.yml
|
uses: ./.github/workflows/mac.yml
|
||||||
with:
|
with:
|
||||||
unit-tests: ${{ fromJson(needs.decision.outputs.configuration).unit_tests }}
|
unit-tests: ${{ fromJson(needs.decision.outputs.configuration).unit_tests }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
build-linux:
|
build-linux:
|
||||||
name: Linux
|
name: Linux
|
||||||
|
@ -104,6 +106,7 @@ jobs:
|
||||||
wpt: 'test'
|
wpt: 'test'
|
||||||
layout: ${{ fromJson(needs.decision.outputs.configuration).layout }}
|
layout: ${{ fromJson(needs.decision.outputs.configuration).layout }}
|
||||||
unit-tests: ${{ fromJson(needs.decision.outputs.configuration).unit_tests }}
|
unit-tests: ${{ fromJson(needs.decision.outputs.configuration).unit_tests }}
|
||||||
|
secrets: inherit
|
||||||
|
|
||||||
build-result:
|
build-result:
|
||||||
name: Result
|
name: Result
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue