From 1d27dd3f806ee1c1bf60ffb3090a536899a271ad Mon Sep 17 00:00:00 2001 From: TG Date: Mon, 24 Mar 2025 23:40:31 +0100 Subject: [PATCH] chore: add linux-arm job to dispatch-workflow.yml This commit updates dispatch-workflow.yml to include a new job entry for Linux ARM. When the matrix contains linux-arm as the workflow, it now triggers the linux-arm.yml workflow. This change allows ARM builds to be dispatched as part of the CI pipeline. Signed-off-by: TG --- .github/workflows/dispatch-workflow.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/dispatch-workflow.yml b/.github/workflows/dispatch-workflow.yml index 8688b96d76c..13b626bf194 100644 --- a/.github/workflows/dispatch-workflow.yml +++ b/.github/workflows/dispatch-workflow.yml @@ -85,3 +85,16 @@ jobs: with: profile: ${{ inputs.profile }} 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.build-libservo }} + bencher: ${{ inputs.bencher }} + +