mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
CI: add build-args
(#36947)
Add `build-args` input in CI and try_parser job definition so we can pass own build args to `./mach build` Testing: There are tests for try parser and I tested CI in my fork. Fixes: partial fix #36823 Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
This commit is contained in:
parent
5c9afe4274
commit
c0339dd360
8 changed files with 53 additions and 12 deletions
6
.github/workflows/dispatch-workflow.yml
vendored
6
.github/workflows/dispatch-workflow.yml
vendored
|
@ -8,6 +8,9 @@ on:
|
|||
profile:
|
||||
required: true
|
||||
type: string
|
||||
build-args:
|
||||
required: true
|
||||
type: string
|
||||
wpt-args:
|
||||
required: true
|
||||
type: string
|
||||
|
@ -35,6 +38,7 @@ jobs:
|
|||
secrets: inherit
|
||||
with:
|
||||
profile: ${{ inputs.profile }}
|
||||
build-args: ${{ inputs.build-args }}
|
||||
unit-tests: ${{ inputs.unit-tests }}
|
||||
build-libservo: ${{ inputs.build-libservo }}
|
||||
bencher: ${{ inputs.bencher }}
|
||||
|
@ -46,6 +50,7 @@ jobs:
|
|||
secrets: inherit
|
||||
with:
|
||||
profile: ${{ inputs.profile }}
|
||||
build-args: ${{ inputs.build-args }}
|
||||
wpt: ${{ inputs.wpt }}
|
||||
unit-tests: ${{ inputs.unit-tests }}
|
||||
build-libservo: ${{ inputs.build-libservo }}
|
||||
|
@ -59,6 +64,7 @@ jobs:
|
|||
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 }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue