mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
* Fix building libservo with `cargo build -p libservo` Signed-off-by: Delan Azabani <dazabani@igalia.com> * Test the libservo build in CI Signed-off-by: Delan Azabani <dazabani@igalia.com> * Work around build issue on macOS (#34517) Signed-off-by: Delan Azabani <dazabani@igalia.com> Co-authored-by: Martin Robinson <mrobinson@igalia.com> --------- Signed-off-by: Delan Azabani <dazabani@igalia.com> Co-authored-by: Martin Robinson <mrobinson@igalia.com>
88 lines
2.1 KiB
YAML
88 lines
2.1 KiB
YAML
name: Dispatch Workflow
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
workflow:
|
|
required: true
|
|
type: string
|
|
profile:
|
|
required: true
|
|
type: string
|
|
wpt-args:
|
|
required: true
|
|
type: string
|
|
wpt-layout:
|
|
required: true
|
|
type: string
|
|
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 }}
|
|
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 }}
|
|
wpt-layout: ${{ inputs.wpt-layout }}
|
|
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 }}
|
|
wpt-layout: ${{ inputs.wpt-layout }}
|
|
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
|
|
uses: ./.github/workflows/lint.yml
|
|
secrets: inherit
|
|
|
|
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 }}
|