From 85a7f9e12c79796405c123659fe4b0382b57f1b9 Mon Sep 17 00:00:00 2001 From: james-crowley Date: Mon, 8 Aug 2022 21:18:10 -0400 Subject: [PATCH] feat: Adding in support for s390x and ppc64le --- .project/goreleaser.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.project/goreleaser.yml b/.project/goreleaser.yml index 3c3d8131..4eea173b 100644 --- a/.project/goreleaser.yml +++ b/.project/goreleaser.yml @@ -16,8 +16,19 @@ builds: - amd64 - arm64 - arm + - s390x + - ppc64le env: [CGO_ENABLED=0] - ldflags: ["-s -w -X gotest.tools/gotestsum/cmd.version={{.Version}}"] + ldflags: ["-s -w -X gotest.tools/gotestsum/cmd.version={{.Version}}"] + ignore: + - goos: darwin + goarch: s390x + - goos: darwin + goarch: ppc64le + - goos: windows + goarch: s390x + - goos: windows + goarch: ppc64le checksum: name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt'