mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
37 lines
849 B
YAML
37 lines
849 B
YAML
project_name: orbit
|
|
|
|
builds:
|
|
- id: orbit
|
|
dir: ./orbit/cmd/orbit/
|
|
binary: orbit
|
|
env:
|
|
# CGO is enabled intentionally for Linux because some users need to be
|
|
# able to use the cgo versions of the networking libraries (see
|
|
# https://github.com/fleetdm/fleet/issues/8992)
|
|
- CGO_ENABLED=1
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Version={{.Version}}
|
|
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Commit={{.Commit}}
|
|
- -X github.com/fleetdm/fleet/v4/orbit/pkg/build.Date={{.Date}}
|
|
|
|
archives:
|
|
- id: orbit
|
|
builds:
|
|
- orbit
|
|
name_template: orbit_{{.Version}}_{{.Os}}
|
|
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
|
|
snapshot:
|
|
name_template: "{{ .Tag }}-untagged"
|
|
|
|
changelog:
|
|
skip: true
|