From b9766ae515cd9154c901490d931fa442319e94c2 Mon Sep 17 00:00:00 2001 From: spigell Date: Mon, 1 Apr 2019 16:58:56 +0300 Subject: [PATCH] add mips to released ARCH (#2746) --- Makefile.release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.release b/Makefile.release index 7ebda075a..bd475f9a3 100644 --- a/Makefile.release +++ b/Makefile.release @@ -47,7 +47,7 @@ NAME:=coredns VERSION:=$(shell grep 'CoreVersion' coremain/version.go | awk '{ print $$3 }' | tr -d '"') GITHUB:=coredns DOCKER_IMAGE_NAME:=$(DOCKER)/$(NAME) -LINUX_ARCH:=amd64 arm arm64 ppc64le s390x +LINUX_ARCH:=amd64 arm arm64 ppc64le s390x mips PLATFORMS:=$(subst $(SPACE),$(COMMA),$(foreach arch,$(LINUX_ARCH),linux/$(arch))) ifeq ($(DOCKER),)