mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 20:08:54 +00:00
This is to introduce a pre-action to all the workflows for building artifacts. The action could take care of tasks such as cleaning up files and reinstalling packages, which prevents a workflow from getting affected by the environment. This also includes the removal of the step `Adjust a permission for repo`, because it could be incorporated into the action. Fixes: #8648 Signed-off-by: Hyounggyu Choi <Hyounggyu.Choi@ibm.com>
81 lines
2.1 KiB
YAML
81 lines
2.1 KiB
YAML
name: CI | Run kubernetes tests on IBM Cloud Z virtual server instance (zVSI)
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
registry:
|
|
required: true
|
|
type: string
|
|
repo:
|
|
required: true
|
|
type: string
|
|
tag:
|
|
required: true
|
|
type: string
|
|
pr-number:
|
|
required: true
|
|
type: string
|
|
commit-hash:
|
|
required: false
|
|
type: string
|
|
target-branch:
|
|
required: false
|
|
type: string
|
|
default: ""
|
|
|
|
jobs:
|
|
run-k8s-tests:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
vmm:
|
|
- qemu
|
|
snapshotter:
|
|
- devmapper
|
|
k8s:
|
|
- k3s
|
|
runs-on: s390x
|
|
env:
|
|
DOCKER_REGISTRY: ${{ inputs.registry }}
|
|
DOCKER_REPO: ${{ inputs.repo }}
|
|
DOCKER_TAG: ${{ inputs.tag }}
|
|
PR_NUMBER: ${{ inputs.pr-number }}
|
|
KATA_HYPERVISOR: ${{ matrix.vmm }}
|
|
KUBERNETES: "k3s"
|
|
SNAPSHOTTER: ${{ matrix.snapshotter }}
|
|
USING_NFD: "true"
|
|
TARGET_ARCH: "s390x"
|
|
steps:
|
|
- name: Take a pre-action for self-hosted runner
|
|
run: ${HOME}/script/pre_action.sh ubuntu-2204
|
|
|
|
- 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: Deploy ${{ matrix.k8s }}
|
|
run: bash tests/integration/kubernetes/gha-run.sh deploy-k8s
|
|
|
|
- name: Configure the ${{ matrix.snapshotter }} snapshotter
|
|
run: bash tests/integration/kubernetes/gha-run.sh configure-snapshotter
|
|
|
|
- name: Deploy Kata
|
|
timeout-minutes: 10
|
|
run: bash tests/integration/kubernetes/gha-run.sh deploy-kata-zvsi
|
|
|
|
- name: Run tests
|
|
timeout-minutes: 30
|
|
run: bash tests/integration/kubernetes/gha-run.sh run-tests
|
|
|
|
- name: Take a post-action
|
|
if: always()
|
|
run: |
|
|
bash tests/integration/kubernetes/gha-run.sh cleanup-zvsi || true
|
|
${HOME}/script/post_action.sh ubuntu-2204
|