diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bee62de5..c20811a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,6 +9,16 @@ on: required: true type: string description: The runner to execute the build on, for example ubuntu-latest + workflow_dispatch: + inputs: + architecture: + required: true + type: string + description: Architecture string, for example aarch64 + runner: + required: true + type: string + description: The runner to execute the build on, for example ubuntu-latest jobs: build: diff --git a/.github/workflows/multikernel-tester.yml b/.github/workflows/multikernel-tester.yml index 9f101f92..39a0116d 100644 --- a/.github/workflows/multikernel-tester.yml +++ b/.github/workflows/multikernel-tester.yml @@ -13,6 +13,20 @@ on: required: true type: string description: Stringified JSON string of kernels, for example '[ "debian", "fedora" ]' + workflow_dispatch: + inputs: + architecture: + required: true + type: string + description: Architecture string, for example aarch64 + runner: + required: true + type: string + description: The runner to execute the build on, for example ubuntu-latest + kernels: + required: true + type: string + description: Stringified JSON string of kernels, for example '[ "debian", "fedora" ]' jobs: test-kernel: