mirror of
https://github.com/openrport/openrport.git
synced 2025-10-26 11:27:11 +00:00
94 lines
2.0 KiB
YAML
94 lines
2.0 KiB
YAML
env:
|
|
- CGO_ENABLED=0
|
|
- PROJECT=github.com/openrport/openrport
|
|
builds:
|
|
- id: rport
|
|
main: ./cmd/rport
|
|
binary: rport
|
|
ldflags:
|
|
- '-s -w -X {{.Env.PROJECT}}/share.BuildVersion={{.Version}}'
|
|
- "-extldflags '-static'"
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
- windows
|
|
- freebsd
|
|
goarch:
|
|
- 386
|
|
- amd64
|
|
- arm
|
|
- arm64
|
|
- mips
|
|
- mipsle
|
|
- mips64
|
|
- mips64le
|
|
- s390x
|
|
goarm:
|
|
- 6
|
|
- 7
|
|
gomips:
|
|
- hardfloat
|
|
- softfloat
|
|
ignore:
|
|
- goos: windows
|
|
goarch: arm64
|
|
- goos: darwin
|
|
goarch: 386
|
|
# TODO: remove when https://github.com/go-ole/go-ole/issues/202 will be fixed
|
|
- goos: windows
|
|
goarch: arm
|
|
- goos: windows
|
|
goarch: 386
|
|
- id: rportd
|
|
main: ./cmd/rportd
|
|
binary: rportd
|
|
ldflags:
|
|
- '-s -w -X {{.Env.PROJECT}}/share.BuildVersion={{.Version}}'
|
|
- "-extldflags '-static'"
|
|
env:
|
|
- CGO_ENABLED=1
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
archives:
|
|
- id: rport-only
|
|
name_template: >-
|
|
rport_{{ .Version }}_{{ .Os }}_
|
|
{{- if eq .Arch "amd64" }}x86_64
|
|
{{- else if eq .Arch "386" }}i386
|
|
{{- else }}{{ .Arch }}{{ end }}
|
|
{{- if .Arm }}v{{ .Arm }}{{ end }}
|
|
{{- if .Mips }}_{{ .Mips }}{{ end }}
|
|
builds:
|
|
- rport
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
files:
|
|
- rport.example.conf
|
|
- id: rportd-only
|
|
name_template: >-
|
|
rportd_{{ .Version }}_{{ .Os }}_
|
|
{{- if eq .Arch "amd64" }}x86_64
|
|
{{- else if eq .Arch "386" }}i386
|
|
{{- else }}{{ .Arch }}{{ end }}
|
|
{{- if .Arm }}v{{ .Arm }}{{ end }}
|
|
{{- if .Mips }}_{{ .Mips }}{{ end }}
|
|
builds:
|
|
- rportd
|
|
files:
|
|
- rportd.example.conf
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
snapshot:
|
|
name_template: '{{ .Tag }}'
|
|
changelog:
|
|
sort: asc
|
|
release:
|
|
github:
|
|
owner: openrport
|
|
name: openrport
|
|
draft: true
|
|
prerelease: true
|