2023-02-22 02:49:13 +00:00
|
|
|
project_name: orbit
|
|
|
|
|
2024-02-16 00:14:21 +00:00
|
|
|
#################################################################################################
|
|
|
|
# If this is updated make sure to update the "How to build from source" section in the README.md.
|
|
|
|
#################################################################################################
|
|
|
|
|
2023-02-22 02:49:13 +00:00
|
|
|
builds:
|
|
|
|
- id: orbit-macos
|
|
|
|
dir: ./orbit/cmd/orbit/
|
|
|
|
binary: orbit
|
|
|
|
env:
|
2023-11-06 20:53:02 +00:00
|
|
|
- CGO_ENABLED=1
|
2023-02-22 02:49:13 +00:00
|
|
|
goos:
|
|
|
|
- darwin
|
|
|
|
goarch:
|
|
|
|
- amd64
|
|
|
|
- arm64
|
|
|
|
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}}
|
|
|
|
|
|
|
|
universal_binaries:
|
|
|
|
- replace: true
|
|
|
|
id: orbit-macos
|
|
|
|
hooks:
|
|
|
|
post: ./orbit/tools/build/sign-macos.sh {{ .Path }}
|
|
|
|
|
|
|
|
archives:
|
|
|
|
- id: orbit-macos
|
|
|
|
builds:
|
|
|
|
- orbit-macos
|
|
|
|
name_template: orbit_{{.Version}}_macos
|
|
|
|
|
|
|
|
checksum:
|
|
|
|
name_template: 'checksums.txt'
|
|
|
|
|
|
|
|
snapshot:
|
|
|
|
name_template: "{{ .Tag }}-untagged"
|
|
|
|
|