From 7ff1df8e8115530c327d9fff41009e9b2f7d9b04 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Wed, 15 Jun 2022 16:01:13 -0400 Subject: [PATCH] goreleaser: add support for missing platforms The goreleaser targets a subset of the platforms supported by packer, this commit adds the missing targets for the next release. --- .goreleaser.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 12d06630..160f1ac0 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -33,6 +33,9 @@ builds: ldflags: - '-s -w -X {{ .ModulePath }}/version.Version={{.Version}} -X {{ .ModulePath }}/version.VersionPrerelease= ' goos: + - netbsd + - solaris + - openbsd - freebsd - windows - linux @@ -43,6 +46,8 @@ builds: - arm - arm64 ignore: + - goos: openbsd + goarch: arm64 - goos: darwin goarch: '386' - goos: linux