Skip to content

Commit f092291

Browse files
authored
revert #1010. (#1300)
1 parent 0d4002a commit f092291

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ SHELL = /usr/bin/env bash -o pipefail
2424
GIT_COMMIT_SHA ?= "$(shell git rev-parse HEAD 2>/dev/null)"
2525
GIT_TAG ?= $(shell git describe --tags --dirty --always)
2626
PLATFORMS ?= linux/amd64
27-
PUBLISH_PLATFORMS ?= linux/amd64,linux/arm64
2827
DOCKER_BUILDX_CMD ?= docker buildx
2928
IMAGE_BUILD_CMD ?= $(DOCKER_BUILDX_CMD) build
3029
IMAGE_BUILD_EXTRA_OPTS ?=
@@ -74,11 +73,6 @@ SYNCER_IMAGE_BUILD_EXTRA_OPTS += -t $(SYNCER_IMAGE_EXTRA_TAG)
7473
BBR_IMAGE_BUILD_EXTRA_OPTS += -t $(BBR_IMAGE_EXTRA_TAG)
7574
endif
7675

77-
# Allow `make MULTI=true ...` in CI to switch to multi-arch.
78-
ifdef MULTI
79-
PLATFORMS := $(PUBLISH_PLATFORMS)
80-
endif
81-
8276

8377
# The name of the kind cluster to use for the "kind-load" target.
8478
KIND_CLUSTER ?= kind
@@ -211,7 +205,7 @@ image-build: ## Build the EPP image using Docker Buildx.
211205

212206
.PHONY: image-push
213207
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
215209

216210
.PHONY: image-load
217211
image-load: LOAD=--load ## Build the EPP image and load it in the local Docker registry.

0 commit comments

Comments
 (0)