From 65532ccd6c15f2c1ea10e2898e70670199dffd3e Mon Sep 17 00:00:00 2001 From: Tom Wieczorek Date: Fri, 24 Jan 2025 16:34:02 +0100 Subject: [PATCH] Allow to override k0sctl version in OS tests matrix Signed-off-by: Tom Wieczorek --- .github/workflows/ostests-matrix.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ostests-matrix.yaml b/.github/workflows/ostests-matrix.yaml index a53c24ee63e7..f550e5ecd734 100644 --- a/.github/workflows/ostests-matrix.yaml +++ b/.github/workflows/ostests-matrix.yaml @@ -8,6 +8,9 @@ on: k0s-version: type: string description: The k0s version to test. Will build k0s from source if empty. + k0sctl-version: + type: string + description: The k0sctl version to use when bootstrapping test clusters. e2e-concurrency-level: type: number description: The number of tests that may be run concurrently. @@ -81,6 +84,7 @@ jobs: uses: ./.github/workflows/ostests-e2e.yaml with: k0s-version: ${{ inputs.k0s-version }} + k0sctl-version: ${{ inputs.k0sctl-version }} e2e-concurrency-level: ${{ fromJSON(inputs.e2e-concurrency-level) }} # infamous GH workflows bug that looses type information (actions/runner#2206) e2e-focus: ${{ inputs.e2e-focus }} os: ${{ matrix.os }}