mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 19:48:12 +00:00
d46d313773
Remove support for freebsd (moby/moby#38818) Add support for ppc64le and s390x archs
45 lines
649 B
YAML
45 lines
649 B
YAML
env:
|
|
- GO111MODULE=on
|
|
- GOPROXY=https://goproxy.io,direct
|
|
|
|
before:
|
|
hooks:
|
|
- go mod download
|
|
|
|
builds:
|
|
-
|
|
main: ./cmd/main.go
|
|
ldflags:
|
|
- -s -w -X main.version={{.Version}}
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- darwin
|
|
- linux
|
|
- windows
|
|
goarch:
|
|
- 386
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
- ppc64le
|
|
- s390x
|
|
goarm:
|
|
- 6
|
|
- 7
|
|
|
|
archives:
|
|
-
|
|
replacements:
|
|
386: i386
|
|
amd64: x86_64
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
files:
|
|
- LICENSE
|
|
- README.md
|
|
- CHANGELOG.md
|
|
|
|
checksum:
|
|
name_template: 'checksums.txt'
|