K8s 1.27, 1.28 버전 지원 #2
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
name: e2e-suite | |
on: | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '*.md' | |
- 'docs/**' | |
- 'LICENSE' | |
- 'NOTICE' | |
- 'PROJECT' | |
- 'SECURITY_CONTACTS' | |
jobs: | |
e2e-pr-blocking: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20.7 | |
- name: Install ginkgo | |
run: go install github.com/onsi/ginkgo/v2/[email protected] | |
- name: turn off swap | |
run: sudo swapoff -a | |
- name: Set netfilter conntrack max | |
run: sudo sysctl -w net.netfilter.nf_conntrack_max=131072 | |
- name: Run Cluster Class e2e tests | |
run: yes | GINKGO_FOCUS="\[Cluster-Class\]" make test-e2e | |
- name: Run PR-Blocking e2e tests | |
run: yes | GINKGO_FOCUS="\[PR-Blocking\]" make test-e2e |