fleet/.goreleaser.yml

151 lines
4 KiB
YAML
Raw Normal View History

2024-12-03 22:15:31 +00:00
version: 2
project_name: fleet
monorepo:
tag_prefix: fleet-
dir: .
2021-08-04 18:41:37 +00:00
before:
hooks:
- make deps
- make generate
# gomod:
# proxy: true
builds:
- id: fleet
dir: ./cmd/fleet/
binary: fleet
env:
- CGO_ENABLED=1
goos:
- linux
goarch:
- amd64
flags:
- -tags=full,fts5,netgo
- -trimpath
ldflags:
- -extldflags "-static"
- -X github.com/fleetdm/fleet/v4/server/version.appName={{ .ArtifactName }}
- -X github.com/fleetdm/fleet/v4/server/version.version={{ .Version }}
- -X github.com/fleetdm/fleet/v4/server/version.branch={{ .Branch }}
- -X github.com/fleetdm/fleet/v4/server/version.revision={{ .FullCommit }}
- -X github.com/fleetdm/fleet/v4/server/version.buildDate={{ time "2006-01-02" }}
- -X github.com/fleetdm/fleet/v4/server/version.buildUser={{ .Env.USER }}
- id: fleetctl
dir: ./cmd/fleetctl/
binary: fleetctl
env:
- CGO_ENABLED=0
goos:
- linux
- windows
goarch:
- amd64
- arm64
flags:
- -trimpath
ldflags:
- -X github.com/fleetdm/fleet/v4/server/version.appName={{ .ArtifactName }}
- -X github.com/fleetdm/fleet/v4/server/version.version={{ .Version }}
- -X github.com/fleetdm/fleet/v4/server/version.branch={{ .Branch }}
- -X github.com/fleetdm/fleet/v4/server/version.revision={{ .FullCommit }}
- -X github.com/fleetdm/fleet/v4/server/version.buildDate={{ time "2006-01-02" }}
- -X github.com/fleetdm/fleet/v4/server/version.buildUser={{ .Env.USER }}
- id: fleetctl-macos
dir: ./cmd/fleetctl/
binary: fleetctl
env:
- CGO_ENABLED=0
goos:
- darwin
goarch:
- amd64
- arm64
flags:
- -trimpath
ldflags:
- -X github.com/fleetdm/fleet/v4/server/version.appName={{ .ArtifactName }}
- -X github.com/fleetdm/fleet/v4/server/version.version={{ .Version }}
- -X github.com/fleetdm/fleet/v4/server/version.branch={{ .Branch }}
- -X github.com/fleetdm/fleet/v4/server/version.revision={{ .FullCommit }}
- -X github.com/fleetdm/fleet/v4/server/version.buildDate={{ time "2006-01-02" }}
- -X github.com/fleetdm/fleet/v4/server/version.buildUser={{ .Env.USER }}
universal_binaries:
- id: fleetctl # resulting binary id
ids: [fleetctl-macos] # source binaries
replace: true
name_template: fleetctl # resulting binary name
hooks:
post:
- sh -c "FLEETCTL_BINARY_PATH={{ .Path }} ./tools/sign-fleetctl/main.sh"
archives:
- id: fleet
builds:
- fleet
name_template: fleet_v{{.Version}}_{{- if eq .Os "darwin" }}macos{{- else }}{{ .Os }}{{ end }}
format_overrides:
- goos: windows
format: zip
wrap_in_directory: true
- id: fleetctl
builds:
- fleetctl
# Note -- changing this can break GitOps and other workflows that expect these filenames to be deterministic!
name_template: fleetctl_v{{.Version}}_{{- if eq .Os "darwin" }}macos{{- else }}{{ .Os }}_{{.Arch}}{{ end }}
wrap_in_directory: true
- id: fleetctl-zip
builds:
- fleetctl
# Note -- changing this can break GitOps and other workflows that expect these filenames to be deterministic!
name_template: fleetctl_v{{.Version}}_{{- if eq .Os "darwin" }}macos{{- else }}{{ .Os }}_{{.Arch}}{{ end }}
format: zip
wrap_in_directory: true
dockers:
- goos: linux
goarch: amd64
ids:
- fleet
- fleetctl
dockerfile: tools/fleet-docker/Dockerfile
image_templates:
- "fleetdm/fleet:{{ .Tag }}"
- "fleetdm/fleet:v{{ .Major }}"
- goos: linux
goarch: amd64
ids:
- fleetctl
dockerfile: tools/fleetctl-docker/Dockerfile
build_flag_templates:
- "--build-arg=binpath=fleetctl"
image_templates:
- "fleetdm/fleetctl:{{ .Tag }}"
- "fleetdm/fleetctl:v{{ .Major }}"
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
release:
github:
owner: fleetdm
name: fleet
draft: true
prerelease: auto