From 8bdb6ef15d681afbdd9423a60dcb0f6d531a9581 Mon Sep 17 00:00:00 2001 From: Vince Prignano Date: Fri, 25 Jun 2021 16:41:41 -0700 Subject: [PATCH] :seedling: Build clusterctl arm64 for linux and darwin Signed-off-by: Vince Prignano --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 9809a2d94bad..5aabf53786f6 100644 --- a/Makefile +++ b/Makefile @@ -552,7 +552,9 @@ release-manifests-dev: ## Builds the development manifests and copies them in th release-binaries: ## Builds the binaries to publish with a release RELEASE_BINARY=./cmd/clusterctl GOOS=linux GOARCH=amd64 $(MAKE) release-binary + RELEASE_BINARY=./cmd/clusterctl GOOS=linux GOARCH=arm64 $(MAKE) release-binary RELEASE_BINARY=./cmd/clusterctl GOOS=darwin GOARCH=amd64 $(MAKE) release-binary + RELEASE_BINARY=./cmd/clusterctl GOOS=darwin GOARCH=arm64 $(MAKE) release-binary release-binary: $(RELEASE_DIR) docker run \