Remove the associated stale conntrack entries when UDP Endpoints are … #1178
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: Go Benchmark Test | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
go-benchmark-checks: | |
name: GoBenchmark | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go using version from go.mod | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: 'go.mod' | |
- name: Install benchci | |
run: curl -sfL https://raw.githubusercontent.com/antrea-io/benchci/main/install.sh | sudo sh -s -- -b /usr/local/bin | |
- name: Run benchmark | |
run: benchci -config test/performance/benchmark.yml |