fleet/orbit/goreleaser-macos.yml
Lucas Manuel Rodriguez b7e544c226
Add instructions to build orbit from source (#16894)
Documentation changes for #16637.
2024-02-15 21:14:21 -03:00

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"