From e58a730205a5eee9738b43dde7184c83a69a489e Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Wed, 15 Jun 2022 15:52:17 -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 12d066309..160f1ac00 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