Skip to content

golang/x/net upgraded to v0.28.2 #1675

golang/x/net upgraded to v0.28.2

golang/x/net upgraded to v0.28.2 #1675

Workflow file for this run

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@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19.10
- 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