Skip to content

Commit 4958c49

Browse files
committed
fix: disable arm64 build
disable qemu
1 parent c47af1f commit 4958c49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export GOPATH GOBIN GO111MODULE DOCKER_CLI_EXPERIMENTAL
4343
# Output type of docker buildx build
4444
OUTPUT_TYPE ?= registry
4545

46-
ALL_ARCH.linux = amd64 arm64
46+
ALL_ARCH.linux = amd64 #arm64
4747
ALL_OS_ARCH = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
4848

4949
all: blob
@@ -119,7 +119,7 @@ ifeq ($(CLOUD), AzureStackCloud)
119119
docker run --privileged --name buildx_buildkit_container-builder0 -d --mount type=bind,src=/etc/ssl/certs,dst=/etc/ssl/certs moby/buildkit:latest || true
120120
endif
121121
# enable qemu for arm64 build
122-
docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
122+
# docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
123123
for arch in $(ALL_ARCH.linux); do \
124124
ARCH=$${arch} $(MAKE) blob; \
125125
ARCH=$${arch} $(MAKE) container-linux; \

0 commit comments

Comments
 (0)