File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ SHELL = /usr/bin/env bash -o pipefail
24
24
GIT_COMMIT_SHA ?= "$(shell git rev-parse HEAD 2>/dev/null) "
25
25
GIT_TAG ?= $(shell git describe --tags --dirty --always)
26
26
PLATFORMS ?= linux/amd64
27
- PUBLISH_PLATFORMS ?= linux/amd64,linux/arm64
28
27
DOCKER_BUILDX_CMD ?= docker buildx
29
28
IMAGE_BUILD_CMD ?= $(DOCKER_BUILDX_CMD ) build
30
29
IMAGE_BUILD_EXTRA_OPTS ?=
@@ -74,11 +73,6 @@ SYNCER_IMAGE_BUILD_EXTRA_OPTS += -t $(SYNCER_IMAGE_EXTRA_TAG)
74
73
BBR_IMAGE_BUILD_EXTRA_OPTS += -t $(BBR_IMAGE_EXTRA_TAG )
75
74
endif
76
75
77
- # Allow `make MULTI=true ...` in CI to switch to multi-arch.
78
- ifdef MULTI
79
- PLATFORMS := $(PUBLISH_PLATFORMS )
80
- endif
81
-
82
76
83
77
# The name of the kind cluster to use for the "kind-load" target.
84
78
KIND_CLUSTER ?= kind
@@ -211,7 +205,7 @@ image-build: ## Build the EPP image using Docker Buildx.
211
205
212
206
.PHONY : image-push
213
207
image-push : PUSH=--push # # Build the EPP image and push it to $IMAGE_REPO.
214
- image-push : MULTI=true image-build
208
+ image-push : image-build
215
209
216
210
.PHONY : image-load
217
211
image-load : LOAD=--load # # Build the EPP image and load it in the local Docker registry.
You can’t perform that action at this time.
0 commit comments