Skip to content
This repository has been archived by the owner on Jun 27, 2021. It is now read-only.

Add arm64 to makefile and use golang 1.16 for cross compiling arm64 #170

Merged
merged 1 commit into from
Apr 6, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ GOTAGS ?=
GOMAXPROCS ?= 8

# Get the project metadata
GOVERSION := 1.15
GOVERSION := 1.16
PKG_NAME := gsuite
PROJECT := github.com/DeviaVir/terraform-provider-$(PKG_NAME)
OWNER := $(notdir $(patsubst %/,%,$(dir $(PROJECT))))
Expand All @@ -31,8 +31,8 @@ GOARCH ?= $(shell go env GOARCH)

# Default os-arch combination to build
XC_OS ?= linux darwin freebsd openbsd solaris windows
XC_ARCH ?= amd64 386 arm
XC_EXCLUDE ?= darwin/386 darwin/arm solaris/386 solaris/arm windows/arm
XC_ARCH ?= amd64 386 arm arm64
XC_EXCLUDE ?= darwin/386 darwin/arm solaris/386 solaris/arm windows/arm solaris/arm64 windows/arm64 freebsd/arm64 openbsd/arm64

# GPG Signing key (blank by default, means no GPG signing)
GPG_KEY ?=
Expand Down