Skip to content

Commit

Permalink
Publish 32-bit and arm64 clients (#1009)
Browse files Browse the repository at this point in the history
Adjustment to our goreleaser configuration so that we publish the
 - 32-bit Windows client
 - 32-bit Linux client
 - 64-bit Arm64 client

That means we now publish 6 clients; the above along with:
 - 64-bit Windows
 - 64-bit Linux
 - 64-bit Darwin

I don't think the other combinations of goos/goarch make sense to publish.

Fixes #1005

Signed-off-by: John Schnake <jschnake@vmware.com>
  • Loading branch information
johnSchnake committed Nov 22, 2019
1 parent 36709f5 commit 1b0ea1a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .goreleaser.yml
Expand Up @@ -8,6 +8,15 @@ builds:
- linux
goarch:
- amd64
- arm64
- 386
ignore:
- goos: darwin
goarch: 386
- goos: darwin
goarch: arm64
- goos: windows
goarch: arm64
ldflags: -s -w -X github.com/vmware-tanzu/sonobuoy/pkg/buildinfo.Version=v{{.Version}} -X github.com/vmware-tanzu/sonobuoy/pkg/buildinfo.GitSHA={{.FullCommit}}
archive:
format: tar.gz
Expand Down

0 comments on commit 1b0ea1a

Please sign in to comment.