From 7f23772763882e44e56841e5471b92afa1269b35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 4 Oct 2023 19:38:04 +0200 Subject: [PATCH] ci: Add placeholder for runk tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The runk test has been executed as part of the former "ubuntu" jenkins CI. We're porting it to GHA and running it against LTS containerd. Signed-off-by: Fabiano FidĂȘncio --- .github/workflows/ci.yaml | 8 +++++ .github/workflows/run-runk-tests.yaml | 46 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 .github/workflows/run-runk-tests.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 35317c528f..9547a81cc7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -225,6 +225,14 @@ jobs: commit-hash: ${{ inputs.commit-hash }} target-branch: ${{ inputs.target-branch }} + run-runk-tests: + needs: build-kata-static-tarball-amd64 + uses: ./.github/workflows/run-runk-tests.yaml + with: + tarball-suffix: -${{ inputs.tag }} + commit-hash: ${{ inputs.commit-hash }} + target-branch: ${{ inputs.target-branch }} + run-vfio-tests: needs: build-kata-static-tarball-amd64 uses: ./.github/workflows/run-vfio-tests.yaml diff --git a/.github/workflows/run-runk-tests.yaml b/.github/workflows/run-runk-tests.yaml new file mode 100644 index 0000000000..36c111218a --- /dev/null +++ b/.github/workflows/run-runk-tests.yaml @@ -0,0 +1,46 @@ +name: CI | Run runk tests +on: + workflow_call: + inputs: + tarball-suffix: + required: false + type: string + commit-hash: + required: false + type: string + target-branch: + required: false + type: string + default: "" + +jobs: + run-runk: + runs-on: garm-ubuntu-2204-smaller + env: + CONTAINERD_VERSION: lts + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ inputs.commit-hash }} + fetch-depth: 0 + + - name: Rebase atop of the latest target branch + run: | + ./tests/git-helper.sh "rebase-atop-of-the-latest-target-branch" + env: + TARGET_BRANCH: ${{ inputs.target-branch }} + + - name: Install dependencies + run: bash tests/integration/runk/gha-run.sh install-dependencies + + - name: get-kata-tarball + uses: actions/download-artifact@v3 + with: + name: kata-static-tarball-amd64${{ inputs.tarball-suffix }} + path: kata-artifacts + + - name: Install kata + run: bash tests/integration/runk/gha-run.sh install-kata kata-artifacts + + - name: Run tracing tests + run: bash tests/integration/runk/gha-run.sh run