forked from kata-containers/kata-containers
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kata-containers#7931 from BbolroC/migrate-to-gha-s…
…390x tests|gha: add containerd and k8s tests for s390x
- Loading branch information
Showing
7 changed files
with
203 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
on: | ||
schedule: | ||
- cron: '0 2 * * *' | ||
- cron: '0 5 * * *' | ||
|
||
name: Nightly CI for s390x | ||
jobs: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: CI | Run cri-containerd 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-cri-containerd: | ||
strategy: | ||
# We can set this to true whenever we're 100% sure that | ||
# the all the tests are not flaky, otherwise we'll fail | ||
# all the tests due to a single flaky instance | ||
fail-fast: false | ||
matrix: | ||
containerd_version: ['active'] | ||
vmm: ['qemu'] | ||
runs-on: s390x | ||
env: | ||
CONTAINERD_VERSION: ${{ matrix.containerd_version }} | ||
GOPATH: ${{ github.workspace }} | ||
KATA_HYPERVISOR: ${{ matrix.vmm }} | ||
steps: | ||
- name: Adjust a permission for repo | ||
run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | ||
|
||
- 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: Install dependencies | ||
run: bash tests/integration/cri-containerd/gha-run.sh install-dependencies | ||
|
||
- name: get-kata-tarball | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: kata-static-tarball-s390x${{ inputs.tarball-suffix }} | ||
path: kata-artifacts | ||
|
||
- name: Install kata | ||
run: bash tests/integration/cri-containerd/gha-run.sh install-kata kata-artifacts | ||
|
||
- name: Run cri-containerd tests | ||
run: bash tests/integration/cri-containerd/gha-run.sh run | ||
|
||
- name: Take a post-action for self-hosted runner | ||
if: always() | ||
run: ${HOME}/script/post_action.sh ubuntu-2204 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
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: Adjust a permission for repo | ||
run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | ||
|
||
- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters