mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
b7e544c226
Documentation changes for #16637.
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
project_name: orbit
|
|
|
|
#################################################################################################
|
|
# If this is updated make sure to update the "How to build from source" section in the README.md.
|
|
#################################################################################################
|
|
|
|
builds:
|
|
- id: orbit-macos
|
|
dir: ./orbit/cmd/orbit/
|
|
binary: orbit
|
|
env:
|
|
- CGO_ENABLED=1
|
|
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"
|
|
|