Skip to content

Commit c5ac07c

Browse files
ALutz273andre.lutz
andauthored
[+] add ppc64le support (#368)
* breaking change after goreleaser v2.0.0 https://github.com/goreleaser/goreleaser/releases/tag/v2.0.0 * Add ppc64le to build packages --------- Co-authored-by: andre.lutz <[email protected]>
1 parent 19eed7c commit c5ac07c

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.goreleaser.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ archives:
1919
{{- title .Os }}_
2020
{{- if eq .Arch "amd64" }}x86_64
2121
{{- else if eq .Arch "386" }}i386
22+
{{- else if eq .Arch "ppc64le" }}ppy64le
2223
{{- else }}{{ .Arch }}{{ end }}
2324
wrap_in_directory: true
2425
format_overrides:
@@ -48,6 +49,7 @@ nfpms:
4849
{{- title .Os }}_
4950
{{- if eq .Arch "amd64" }}x86_64
5051
{{- else if eq .Arch "386" }}i386
52+
{{- else if eq .Arch "ppc64le" }}ppy64le
5153
{{- else }}{{ .Arch }}{{ end }}
5254
5355
vendor: CYBERTEC PostgreSQL International GmbH

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ install:
1414
DESTDIR=tmp
1515

1616
package:
17-
goreleaser release --snapshot --skip-publish --rm-dist
17+
goreleaser release --snapshot --skip=publish --clean
1818

1919
clean:
2020
$(RM) vip-manager
2121
$(RM) -r dist
22-
$(RM) -r $(DESTDIR)
22+
$(RM) -r $(DESTDIR)

0 commit comments

Comments
 (0)