mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
ci: Make dispatch-workflow.yml
GitHub job names a bit friendlier (#31340)
This makes the names match the ones used in the workflows themselves.
This commit is contained in:
parent
81a543e41c
commit
a3ce1f2636
3 changed files with 10 additions and 6 deletions
4
.github/workflows/dispatch-workflow.yml
vendored
4
.github/workflows/dispatch-workflow.yml
vendored
|
@ -21,6 +21,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
win:
|
win:
|
||||||
if: ${{ inputs.workflow == 'windows' }}
|
if: ${{ inputs.workflow == 'windows' }}
|
||||||
|
name: Windows
|
||||||
uses: ./.github/workflows/windows.yml
|
uses: ./.github/workflows/windows.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
|
@ -29,6 +30,7 @@ jobs:
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
if: ${{ inputs.workflow == 'macos' }}
|
if: ${{ inputs.workflow == 'macos' }}
|
||||||
|
name: MacOS
|
||||||
uses: ./.github/workflows/mac.yml
|
uses: ./.github/workflows/mac.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
|
@ -39,6 +41,7 @@ jobs:
|
||||||
|
|
||||||
linux:
|
linux:
|
||||||
if: ${{ inputs.workflow == 'linux' }}
|
if: ${{ inputs.workflow == 'linux' }}
|
||||||
|
name: Linux
|
||||||
uses: ./.github/workflows/linux.yml
|
uses: ./.github/workflows/linux.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
|
@ -49,6 +52,7 @@ jobs:
|
||||||
|
|
||||||
android:
|
android:
|
||||||
if: ${{ inputs.workflow == 'android' }}
|
if: ${{ inputs.workflow == 'android' }}
|
||||||
|
name: Android
|
||||||
uses: ./.github/workflows/android.yml
|
uses: ./.github/workflows/android.yml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
|
|
4
.github/workflows/linux.yml
vendored
4
.github/workflows/linux.yml
vendored
|
@ -154,7 +154,7 @@ jobs:
|
||||||
|
|
||||||
wpt-2020:
|
wpt-2020:
|
||||||
if: ${{ inputs.wpt-layout == '2020' || inputs.wpt-layout == 'all' }}
|
if: ${{ inputs.wpt-layout == '2020' || inputs.wpt-layout == 'all' }}
|
||||||
name: Linux WPT Tests 2020
|
name: Linux WPT
|
||||||
needs: ["build"]
|
needs: ["build"]
|
||||||
uses: ./.github/workflows/linux-wpt.yml
|
uses: ./.github/workflows/linux-wpt.yml
|
||||||
with:
|
with:
|
||||||
|
@ -166,7 +166,7 @@ jobs:
|
||||||
|
|
||||||
wpt-2013:
|
wpt-2013:
|
||||||
if: ${{ inputs.wpt-layout == '2013' || inputs.wpt-layout == 'all' }}
|
if: ${{ inputs.wpt-layout == '2013' || inputs.wpt-layout == 'all' }}
|
||||||
name: Linux WPT Tests 2013
|
name: Linux WPT (Legacy)
|
||||||
needs: ["build"]
|
needs: ["build"]
|
||||||
uses: ./.github/workflows/linux-wpt.yml
|
uses: ./.github/workflows/linux-wpt.yml
|
||||||
with:
|
with:
|
||||||
|
|
8
.github/workflows/mac.yml
vendored
8
.github/workflows/mac.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Mac
|
name: MacOS
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
|
@ -58,7 +58,7 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Mac Build
|
name: MacOS Build
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
steps:
|
steps:
|
||||||
# XProtect can cause random failures if it decides that the DMG we create
|
# XProtect can cause random failures if it decides that the DMG we create
|
||||||
|
@ -150,7 +150,7 @@ jobs:
|
||||||
|
|
||||||
wpt-2020:
|
wpt-2020:
|
||||||
if: ${{ inputs.wpt-layout == '2020' || inputs.wpt-layout == 'all' }}
|
if: ${{ inputs.wpt-layout == '2020' || inputs.wpt-layout == 'all' }}
|
||||||
name: Mac WPT Tests 2020
|
name: MacOS WPT
|
||||||
needs: ["build"]
|
needs: ["build"]
|
||||||
uses: ./.github/workflows/mac-wpt.yml
|
uses: ./.github/workflows/mac-wpt.yml
|
||||||
with:
|
with:
|
||||||
|
@ -161,7 +161,7 @@ jobs:
|
||||||
|
|
||||||
wpt-2013:
|
wpt-2013:
|
||||||
if: ${{ inputs.wpt-layout == '2013' || inputs.wpt-layout == 'all' }}
|
if: ${{ inputs.wpt-layout == '2013' || inputs.wpt-layout == 'all' }}
|
||||||
name: Mac WPT Tests 2013
|
name: MacOS WPT (Legacy)
|
||||||
needs: ["build"]
|
needs: ["build"]
|
||||||
uses: ./.github/workflows/mac-wpt.yml
|
uses: ./.github/workflows/mac-wpt.yml
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue