Skip to content

Commit

Permalink
Fix GoReleaser ARMv{6,7} builds
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmalkmus authored and bahlo committed Mar 21, 2021
1 parent d722efd commit f391745
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,37 +23,38 @@ builds:
- -X github.com/axiomhq/pkg/version.buildUser=goreleaser
mod_timestamp: "{{ .CommitTimestamp }}"
id: darwin
goos:
goos:
- darwin
goarch:
goarch:
- amd64
- arm64

- <<: *build_defaults
id: linux
goos:
goos:
- linux
goarch:
goarch:
- amd64
- arm64
goarm:
- 6
- 7

- <<: *build_defaults
flags:
- -buildmode=exe
id: linux-no-pie
goos:
goos:
- linux
goarch:
goarch:
- 386
- arm
goarm:
- 6
- 7

- <<: *build_defaults
id: windows
goos:
goos:
- windows
goarch:
goarch:
- 386
- amd64

Expand Down

0 comments on commit f391745

Please sign in to comment.