Skip to content

Commit dbe8e76

Browse files
committed
Bump go version and add e2e test runner
1 parent 9fea054 commit dbe8e76

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ALL_ARCH ?= amd64 arm arm64 ppc64le s390x
2424
# The output type could either be docker (local), or registry.
2525
OUTPUT_TYPE ?= docker
2626
GO_TOOLCHAIN ?= golang
27-
GO_VERSION ?= 1.22.2
27+
GO_VERSION ?= 1.22.3
2828
BASEIMAGE ?= gcr.io/distroless/static-debian11:nonroot
2929

3030
ifeq ($(GOPATH),)
@@ -80,6 +80,10 @@ test:
8080
test-integration: build
8181
go test -mod=vendor -race ./tests -agent-path $(PWD)/bin/proxy-agent
8282

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+
8387
## --------------------------------------
8488
## Binaries
8589
## --------------------------------------

0 commit comments

Comments
 (0)