File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 94
94
docker tag gcr.io/k8s-staging-kas-network-proxy/proxy-server:master gcr.io/k8s-staging-kas-network-proxy/proxy-server-amd64:master
95
95
docker tag gcr.io/k8s-staging-kas-network-proxy/proxy-agent:master gcr.io/k8s-staging-kas-network-proxy/proxy-agent-amd64:master
96
96
- name : Run e2e tests
97
- run : make test-e2e
97
+ run : make test-e2e-ci
98
98
e2e :
99
99
name : e2e
100
100
runs-on : ubuntu-20.04
Original file line number Diff line number Diff line change @@ -87,6 +87,11 @@ test-integration: build
87
87
test-e2e : docker-build
88
88
go test -mod=vendor ./e2e -race -agent-image ${AGENT_FULL_IMAGE} -$(TARGETARCH ) :${TAG} -server-image ${SERVER_FULL_IMAGE} -$(TARGETARCH ) :${TAG} -kind-image ${KIND_IMAGE} -mode ${CONNECTION_MODE}
89
89
90
+ # e2e test runner for continuous integration that does not build a new image.
91
+ .PHONY : test-e2e-ci
92
+ test-e2e :
93
+ go test -mod=vendor ./e2e -race -agent-image ${AGENT_FULL_IMAGE} -$(TARGETARCH ) :${TAG} -server-image ${SERVER_FULL_IMAGE} -$(TARGETARCH ) :${TAG} -kind-image ${KIND_IMAGE} -mode ${CONNECTION_MODE}
94
+
90
95
# # --------------------------------------
91
96
# # Binaries
92
97
# # --------------------------------------
You can’t perform that action at this time.
0 commit comments