forked from karmada-io/karmada
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: zhzhuang-zju <m17799853869@163.com>
- Loading branch information
1 parent
1997228
commit 0bb7835
Showing
1 changed file
with
70 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Operator Test | ||
on: | ||
# Run this workflow every time a new commit pushed to upstream/fork repository. | ||
# Run workflow on fork repository will help contributors find and resolve issues before sending a PR. | ||
push: | ||
# Exclude branches created by Dependabot to avoid triggering current workflow | ||
# for PRs initiated by Dependabot. | ||
branches-ignore: | ||
- 'dependabot/**' | ||
pull_request: | ||
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.actor }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
permissions: | ||
contents: read # for actions/checkout to fetch code | ||
jobs: | ||
set-up-operator-test-environment: | ||
name: Set up operator test environment | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# Here support the latest three minor releases of Kubernetes, this can be considered to be roughly | ||
# the same as the End of Life of the Kubernetes release: https://kubernetes.io/releases/ | ||
# Please remember to update the CI Schedule Workflow when we add a new version. | ||
k8s: [ v1.29.0, v1.30.0, v1.31.0 ] | ||
steps: | ||
# Free up disk space on Ubuntu | ||
- name: Free Disk Space (Ubuntu) | ||
uses: jlumbroso/free-disk-space@main | ||
with: | ||
# this might remove tools that are actually needed, if set to "true" but frees about 6 GB | ||
tool-cache: false | ||
# all of these default to true, but feel free to set to "false" if necessary for your workflow | ||
android: true | ||
dotnet: true | ||
haskell: true | ||
large-packages: false | ||
docker-images: false | ||
swap-storage: false | ||
- name: checkout code | ||
uses: actions/checkout@v4 | ||
- name: install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: go.mod | ||
- name: setup operator test environment | ||
run: | | ||
export CLUSTER_VERSION=kindest/node:${{ matrix.k8s }} | ||
hack/local-up-karmada-by-operator.sh | ||
- name: run operator test | ||
run: | | ||
# run a single e2e | ||
export KUBECONFIG=${HOME}/.kube/karmada.config | ||
kubectl config use-context karmada-apiserver | ||
GO111MODULE=on go install github.com/onsi/ginkgo/v2/ginkgo | ||
ginkgo -v --race --trace -p --focus="[BasicPropagation] propagation testing deployment propagation testing" ./test/e2e/ | ||
- name: upload logs | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: karmada_operator_e2e_log_${{ matrix.k8s }} | ||
path: ${{ github.workspace }}/karmada-operator-e2e-logs/${{ matrix.k8s }}/ | ||
- name: upload kind logs | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: karmada_kind_log_${{ matrix.k8s }} | ||
path: /tmp/karmada/ |