34 lines
570 B
YAML
34 lines
570 B
YAML
project_name: gophast
|
|
builds:
|
|
-
|
|
main: ./cmd/gophast/main.go
|
|
env:
|
|
- CGO_ENABLED=0
|
|
ldflags:
|
|
- -s -w -X gitlab.com/tslocum/gophast/pkg/config.Version={{.Version}}
|
|
goos:
|
|
# - darwin
|
|
# - freebsd
|
|
- linux
|
|
- windows
|
|
goarch:
|
|
- 386
|
|
- amd64
|
|
# - arm
|
|
# - arm64
|
|
# - ppc64
|
|
# - ppc64le
|
|
# goarm:
|
|
# - 6
|
|
# - 7
|
|
archive:
|
|
replacements:
|
|
386: i386
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
files:
|
|
- LICENSE
|
|
- README.md
|
|
checksum:
|
|
name_template: 'checksums.txt'
|