Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow to override k0sctl version in OS tests matrix #5477

Merged
merged 1 commit into from
Feb 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ostests-matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 }}
Expand Down
Loading