servo/.github/workflows/dispatch-workflow.yml
Jonathan Schwender 5b3b474862
ci: Don't give lint job secrets
The lint workflow doesn't seem to use any secrets,
so we shouldn't pass them.

Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2025-08-06 19:48:45 +02:00

97 lines
2.4 KiB
YAML

name: Dispatch Workflow
on:
workflow_call:
inputs:
workflow:
required: true
type: string
profile:
required: true
type: string
build-args:
required: true
type: string
wpt-args:
required: true
type: string
wpt:
required: true
type: boolean
number-of-wpt-chunks:
required: true
type: number
unit-tests:
required: true
type: boolean
build-libservo:
required: true
type: boolean
bencher:
required: true
type: boolean
jobs:
win:
if: ${{ inputs.workflow == 'windows' }}
name: Windows
uses: ./.github/workflows/windows.yml
secrets: inherit
with:
profile: ${{ inputs.profile }}
build-args: ${{ inputs.build-args }}
unit-tests: ${{ inputs.unit-tests }}
build-libservo: ${{ inputs.build-libservo }}
bencher: ${{ inputs.bencher }}
macos:
if: ${{ inputs.workflow == 'macos' }}
name: MacOS
uses: ./.github/workflows/mac.yml
secrets: inherit
with:
profile: ${{ inputs.profile }}
build-args: ${{ inputs.build-args }}
wpt: ${{ inputs.wpt }}
unit-tests: ${{ inputs.unit-tests }}
build-libservo: ${{ inputs.build-libservo }}
wpt-args: ${{ inputs.wpt-args }}
bencher: ${{ inputs.bencher }}
linux:
if: ${{ inputs.workflow == 'linux' }}
name: Linux
uses: ./.github/workflows/linux.yml
secrets: inherit
with:
profile: ${{ inputs.profile }}
build-args: ${{ inputs.build-args }}
wpt: ${{ inputs.wpt }}
number-of-wpt-chunks: ${{ inputs.number-of-wpt-chunks }}
unit-tests: ${{ inputs.unit-tests }}
build-libservo: ${{ inputs.build-libservo }}
wpt-args: ${{ inputs.wpt-args }}
bencher: ${{ inputs.bencher }}
lint:
if: ${{ inputs.workflow == 'lint' }}
name: Lint
# Note: The lint workflow does not need access to any secrets.
uses: ./.github/workflows/lint.yml
android:
if: ${{ inputs.workflow == 'android' }}
name: Android
uses: ./.github/workflows/android.yml
secrets: inherit
with:
profile: ${{ inputs.profile }}
bencher: ${{ inputs.bencher }}
ohos:
if: ${{ inputs.workflow == 'ohos' }}
name: OpenHarmony
uses: ./.github/workflows/ohos.yml
secrets: inherit
with:
profile: ${{ inputs.profile }}
bencher: ${{ inputs.bencher }}