mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-14 16:09:32 +01:00
9ceac66b08
Modernize the list of os-arch pairs that get official release builds; add darwin/arm64 and openbsd/amd64, remove 386 and armv7, add plan9/amd64 for fun.
67 lines
1.3 KiB
YAML
67 lines
1.3 KiB
YAML
# .goreleaser.yml
|
|
# Build customization
|
|
project_name: ergo
|
|
builds:
|
|
- main: ergo.go
|
|
binary: ergo
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
- freebsd
|
|
- openbsd
|
|
- plan9
|
|
goarch:
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- 6
|
|
ignore:
|
|
- goos: windows
|
|
goarch: arm
|
|
- goos: windows
|
|
goarch: arm64
|
|
- goos: darwin
|
|
goarch: arm
|
|
- goos: freebsd
|
|
goarch: arm
|
|
- goos: freebsd
|
|
goarch: arm64
|
|
- goos: openbsd
|
|
goarch: arm
|
|
- goos: openbsd
|
|
goarch: arm64
|
|
- goos: plan9
|
|
goarch: arm
|
|
- goos: plan9
|
|
goarch: arm64
|
|
flags:
|
|
- -trimpath
|
|
|
|
archives:
|
|
-
|
|
name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
|
format: tar.gz
|
|
replacements:
|
|
amd64: x86_64
|
|
darwin: macos
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
files:
|
|
- README
|
|
- CHANGELOG.md
|
|
- LICENSE
|
|
- ergo.motd
|
|
- default.yaml
|
|
- traditional.yaml
|
|
- docs/MANUAL.md
|
|
- docs/USERGUIDE.md
|
|
- languages/*.yaml
|
|
- languages/*.json
|
|
- languages/*.md
|
|
wrap_in_directory: true
|
|
checksum:
|
|
name_template: "{{ .ProjectName }}-{{ .Version }}-checksums.txt"
|