Skip to content

Commit 6615f6a

Browse files
committed
Add kind-e2e workflow
1 parent 28ebff1 commit 6615f6a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/e2e.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,25 @@ jobs:
4848
with:
4949
name: konnectivity-agent
5050
path: _output/konnectivity-agent.tar
51+
kind-e2e:
52+
name: kind-e2e
53+
runs-on: ubuntu-20.04
54+
timeout-minutes: 100
55+
steps:
56+
- name: Check out code
57+
uses: actions/checkout@v4
58+
- name: Set up Go
59+
uses: actions/setup-go@v5
60+
with:
61+
go-version-file: go.mod
62+
id: go
63+
- name: Install kind
64+
run: |
65+
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
66+
chmod +x ./kind
67+
sudo mv./kind /usr/local/bin/kind
68+
- name: Run e2e tests
69+
run: make test-e2e
5170
e2e:
5271
name: e2e
5372
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)