fleet/orbit/goreleaser-linux.yml

45 lines
1.2 KiB
YAML
Raw Normal View History

2024-12-03 22:15:31 +00:00
version: 2
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
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
- CC=musl-gcc
goos:
- linux
goarch:
- amd64
flags:
- -trimpath
ldflags:
- -linkmode external -extldflags "-static"
- -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:
2024-12-03 22:15:31 +00:00
version_template: "{{ .Tag }}-untagged"
changelog:
2024-12-03 22:15:31 +00:00
disable: true