Skip to content

Commit

Permalink
Add darwin-arm64 release target
Browse files Browse the repository at this point in the history
* Minimum Go version is v1.16 now
  • Loading branch information
dghubble committed Sep 24, 2021
1 parent 2de4445 commit 0724cc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Notable changes between releases.

## Latest

* Migrate Terraform Plugin SDK from v1.9.0 to v2.3.0 ([#56](https://github.com/poseidon/terraform-provider-matchbox/pull/56))
## v0.5.0

* Migrate Terraform Plugin SDK from v1.9.0 to v2.8.0
* Remove Go module vendoring
* Remove tarball release format

Expand Down
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ release: \
_output/plugin-linux-amd64.zip \
_output/plugin-linux-arm64.zip \
_output/plugin-darwin-amd64.zip \
_output/plugin-darwin-arm64.zip \
_output/plugin-windows-amd64.zip

_output/plugin-%.zip: NAME=terraform-provider-matchbox_$(SEMVER)_$(subst -,_,$*)
Expand All @@ -51,6 +52,7 @@ _output/plugin-%.zip: _output/%/terraform-provider-matchbox
_output/linux-amd64/terraform-provider-matchbox: GOARGS = GOOS=linux GOARCH=amd64
_output/linux-arm64/terraform-provider-matchbox: GOARGS = GOOS=linux GOARCH=arm64
_output/darwin-amd64/terraform-provider-matchbox: GOARGS = GOOS=darwin GOARCH=amd64
_output/darwin-arm64/terraform-provider-matchbox: GOARGS = GOOS=darwin GOARCH=arm64
_output/windows-amd64/terraform-provider-matchbox: GOARGS = GOOS=windows GOARCH=amd64
_output/%/terraform-provider-matchbox:
$(GOARGS) go build -o $@ github.com/poseidon/terraform-provider-matchbox
Expand Down

0 comments on commit 0724cc0

Please sign in to comment.