mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
chore: remove linux-arm from dispatch and add workflow_dispatch trigger
Signed-off-by: TG <ebiritg@gmail.com>
This commit is contained in:
parent
444e3012e8
commit
080132af5d
2 changed files with 15 additions and 14 deletions
11
.github/workflows/dispatch-workflow.yml
vendored
11
.github/workflows/dispatch-workflow.yml
vendored
|
@ -85,14 +85,3 @@ jobs:
|
||||||
with:
|
with:
|
||||||
profile: ${{ inputs.profile }}
|
profile: ${{ inputs.profile }}
|
||||||
bencher: ${{ inputs.bencher }}
|
bencher: ${{ inputs.bencher }}
|
||||||
|
|
||||||
linux-arm:
|
|
||||||
if: ${{ inputs.workflow == 'linux-arm' }}
|
|
||||||
name: Linux ARM
|
|
||||||
uses: ./.github/workflows/linux-arm.yml
|
|
||||||
secrets: inherit
|
|
||||||
with:
|
|
||||||
profile: ${{ inputs.profile }}
|
|
||||||
unit-tests: ${{ inputs.unit-tests }}
|
|
||||||
build-libservo: ${{ inputs.unit-tests }}
|
|
||||||
bencher: ${{ inputs.bencher }}
|
|
||||||
|
|
18
.github/workflows/linux-arm.yml
vendored
18
.github/workflows/linux-arm.yml
vendored
|
@ -15,13 +15,26 @@ on:
|
||||||
bencher:
|
bencher:
|
||||||
required: true
|
required: true
|
||||||
type: boolean
|
type: boolean
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
profile:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
unit-tests:
|
||||||
|
required: true
|
||||||
|
type: boolean
|
||||||
|
build-libservo:
|
||||||
|
required: true
|
||||||
|
type: boolean
|
||||||
|
bencher:
|
||||||
|
required: true
|
||||||
|
type: boolean
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
linux-arm:
|
linux-arm:
|
||||||
name: Linux Arm
|
name: Linux Arm
|
||||||
runs-on: ubuntu-24.04-arm
|
runs-on: ubuntu-24.04-arm
|
||||||
steps:
|
steps:i
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
@ -58,5 +71,4 @@ jobs:
|
||||||
- name: Run Bencher
|
- name: Run Bencher
|
||||||
if: ${{ inputs.bencher }}
|
if: ${{ inputs.bencher }}
|
||||||
run: |
|
run: |
|
||||||
# Replace with the command to run your bencher tests
|
|
||||||
./mach test-bencher --release -- target=aarch64-unknown-linux-gnu
|
./mach test-bencher --release -- target=aarch64-unknown-linux-gnu
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue