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

Commit

Permalink
Add arm64 to makefile and use golang 1.16 for cross compiling arm64 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
gtmtech authored Apr 6, 2021
1 parent 6e128c0 commit dae74af
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit dae74af

Please sign in to comment.