From f3d4e405a6c99591947635058054ab827c48542b Mon Sep 17 00:00:00 2001 From: Michal Stanek Date: Tue, 19 Mar 2024 16:40:23 +0100 Subject: [PATCH] Update workflows to make them manually runnable --- .github/workflows/build.yml | 10 ++++++++++ .github/workflows/multikernel-tester.yml | 14 ++++++++++++++ 2 files changed, 24 insertions(+) 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: