-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (31 loc) · 862 Bytes
/
e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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