summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMayur Waghmode <42777188+mayurwaghmode@users.noreply.github.com>2022-06-20 17:48:44 +0530
committerGitHub <noreply@github.com>2022-06-20 17:48:44 +0530
commitea5f3b9b9475a438ede0c98aa80a950fdee3d4f8 (patch)
treee861c3dfa80bfe715c83918f96517a9b1fbb001b
parentd00ee90a7e2a0f4f49dbc04c36822a0ab76f6983 (diff)
Added ppc64le support
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0de5ffa7..2971c337 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ extension = $(patsubst windows,.exe,$(filter windows,$(1)))
PKG_NAME := gomplate
DOCKER_REPO ?= hairyhenderson/$(PKG_NAME)
PREFIX := .
-DOCKER_LINUX_PLATFORMS ?= linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
+DOCKER_LINUX_PLATFORMS ?= linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7,linux/ppc64le
DOCKER_PLATFORMS ?= $(DOCKER_LINUX_PLATFORMS),windows/amd64
# we just load by default, as a "dry run"
BUILDX_ACTION ?= --load
@@ -37,7 +37,7 @@ endif
endif
# platforms := freebsd-amd64 linux-amd64 linux-386 linux-armv5 linux-armv6 linux-armv7 linux-arm64 darwin-amd64 solaris-amd64 windows-amd64.exe windows-386.exe
-platforms := freebsd-amd64 linux-amd64 linux-386 linux-armv6 linux-armv7 linux-arm64 darwin-amd64 darwin-arm64 solaris-amd64 windows-amd64.exe windows-386.exe
+platforms := freebsd-amd64 linux-amd64 linux-386 linux-armv6 linux-armv7 linux-arm64 linux-ppc64le darwin-amd64 darwin-arm64 solaris-amd64 windows-amd64.exe windows-386.exe
clean:
rm -Rf $(PREFIX)/bin/*