File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -62,24 +62,30 @@ jobs:
62
62
matrix :
63
63
k8s : [ v1.27.11, v1.28.7, v1.29.2 ]
64
64
steps :
65
+ - name : Install kind
66
+ run : |
67
+ curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
68
+ chmod +x ./kind
69
+ sudo mv ./kind /usr/local/bin/kind
65
70
- name : Check out code
66
71
uses : actions/checkout@v4
67
72
- name : Set up Go
68
73
uses : actions/setup-go@v5
69
74
with :
70
75
go-version-file : go.mod
71
76
id : go
72
- - uses : actions/download-artifact@v4
77
+ - name : Download prebuilt konnectivity-server image
78
+ uses : actions/download-artifact@v4
73
79
with :
74
80
name : konnectivity-server
75
- - uses : actions/download-artifact@v4
81
+ - name : Download prebuilt konnectivity-agent image
82
+ uses : actions/download-artifact@v4
76
83
with :
77
84
name : konnectivity-agent
78
- - name : Install kind
85
+ - name : Load prebuilt konnectivity images
79
86
run : |
80
- curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
81
- chmod +x ./kind
82
- sudo mv ./kind /usr/local/bin/kind
87
+ docker load --input konnectivity-server.tar
88
+ docker load --input konnectivity-agent.tar
83
89
- name : Run e2e tests
84
90
run : make test-e2e
85
91
e2e :
You can’t perform that action at this time.
0 commit comments