mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
bd8cda15ce
Publish Docker images for the following events: 1) A user with write access to the repo opens a PR. 2) Any commit is made to the `main`, or `patch-*` branches.
75 lines
1.7 KiB
YAML
75 lines
1.7 KiB
YAML
project_name: fleet
|
|
|
|
monorepo:
|
|
tag_prefix: fleet-
|
|
dir: .
|
|
|
|
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/kolide/kit/version.appName={{ .ArtifactName }}
|
|
- -X github.com/kolide/kit/version.version={{ .Version }}
|
|
- -X github.com/kolide/kit/version.branch={{ .Branch }}
|
|
- -X github.com/kolide/kit/version.revision={{ .FullCommit }}
|
|
- -X github.com/kolide/kit/version.buildDate={{ time "2006-01-02" }}
|
|
- -X github.com/kolide/kit/version.buildUser={{ .Env.USER }}
|
|
|
|
- id: fleetctl
|
|
dir: ./cmd/fleetctl/
|
|
binary: fleetctl
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -X github.com/kolide/kit/version.appName={{ .ArtifactName }}
|
|
- -X github.com/kolide/kit/version.version={{ .Version }}
|
|
- -X github.com/kolide/kit/version.branch={{ .Branch }}
|
|
- -X github.com/kolide/kit/version.revision={{ .FullCommit }}
|
|
- -X github.com/kolide/kit/version.buildDate={{ time "2006-01-02" }}
|
|
- -X github.com/kolide/kit/version.buildUser={{ .Env.USER }}
|
|
|
|
|
|
dockers:
|
|
- goos: linux
|
|
goarch: amd64
|
|
ids:
|
|
- fleet
|
|
- fleetctl
|
|
dockerfile: tools/docker/fleet.Dockerfile
|
|
image_templates:
|
|
- 'fleetdm/fleet:{{ .ShortCommit }}'
|
|
|
|
- goos: linux
|
|
goarch: amd64
|
|
ids:
|
|
- fleetctl
|
|
dockerfile: tools/docker/fleetctl.Dockerfile
|
|
image_templates:
|
|
- 'fleetdm/fleetctl:{{ .ShortCommit }}'
|
|
|