github.com/osrg/gobgp@v2.0.0+incompatible/.goreleaser.yml (about) 1 # 2 # .goreleaser.yml 3 # Build customization 4 builds: 5 - main: ./cmd/gobgp/ 6 binary: gobgp 7 ldflags: -s -extldflags "-static" 8 goos: 9 - linux 10 goarch: 11 - amd64 12 - 386 13 - arm 14 - arm64 15 16 - main: ./cmd/gobgpd/ 17 binary: gobgpd 18 ldflags: -s -extldflags "-static" 19 goos: 20 - linux 21 goarch: 22 - amd64 23 - 386 24 - arm 25 - arm64 26 27 archive: 28 files: 29 - LICENSE 30 - README.md