From 44899d4cdf6aca72849c12ee4d8af1ceca97ffac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 15 Nov 2023 13:44:51 +0100 Subject: [PATCH] tests: k8s: Allow passing rust-runtime env var to kata-deploy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will be used for selecting the correct runtimes and runtimeclasses to be deployed with kata-deploy. Fixes: #8475 Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/run-k8s-tests-on-aks.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/run-k8s-tests-on-aks.yaml b/.github/workflows/run-k8s-tests-on-aks.yaml index aea0a02406..e275869796 100644 --- a/.github/workflows/run-k8s-tests-on-aks.yaml +++ b/.github/workflows/run-k8s-tests-on-aks.yaml @@ -27,6 +27,8 @@ jobs: strategy: fail-fast: false matrix: + rust-runtime: + - false host_os: - ubuntu vmm: @@ -40,6 +42,8 @@ jobs: include: - host_os: cbl-mariner vmm: clh + - dragonball: + rust-runtime: true runs-on: ubuntu-latest env: DOCKER_REGISTRY: ${{ inputs.registry }} @@ -51,6 +55,7 @@ jobs: KUBERNETES: "vanilla" USING_NFD: "false" K8S_TEST_HOST_TYPE: ${{ matrix.instance-type }} + RUST_RUNTIME: ${{ matrix.rust-runtime }} steps: - uses: actions/checkout@v4 with: