We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fea054 commit dbe8e76Copy full SHA for dbe8e76
Makefile
@@ -24,7 +24,7 @@ ALL_ARCH ?= amd64 arm arm64 ppc64le s390x
24
# The output type could either be docker (local), or registry.
25
OUTPUT_TYPE ?= docker
26
GO_TOOLCHAIN ?= golang
27
-GO_VERSION ?= 1.22.2
+GO_VERSION ?= 1.22.3
28
BASEIMAGE ?= gcr.io/distroless/static-debian11:nonroot
29
30
ifeq ($(GOPATH),)
@@ -80,6 +80,10 @@ test:
80
test-integration: build
81
go test -mod=vendor -race ./tests -agent-path $(PWD)/bin/proxy-agent
82
83
+.PHONY: test-e2e
84
+test-e2e: docker-build
85
+ go test -mod=vendor ./e2e -agent-image ${AGENT_FULL_IMAGE}-$(TARGETARCH):${TAG} -server-image ${SERVER_FULL_IMAGE}-$(TARGETARCH):${TAG}
86
+
87
## --------------------------------------
88
## Binaries
89
0 commit comments