mirror of
https://github.com/hauler-dev/hauler.git
synced 2026-02-14 18:09:51 +00:00
* only ignore project-root/store not all store paths * remove embedded cosign binary in favor of fork library
122 lines
3.3 KiB
YAML
122 lines
3.3 KiB
YAML
version: 2
|
|
|
|
project_name: hauler
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
- go mod download
|
|
- go fmt ./...
|
|
- go vet ./...
|
|
- go test ./... -cover -race -covermode=atomic -coverprofile=coverage.out
|
|
|
|
release:
|
|
prerelease: auto
|
|
make_latest: false
|
|
|
|
env:
|
|
- vpkg=hauler.dev/go/hauler/internal/version
|
|
- cosign_version=v2.2.3+carbide.3
|
|
|
|
builds:
|
|
- dir: ./cmd/hauler/.
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
ldflags:
|
|
- -s -w -X {{ .Env.vpkg }}.gitVersion={{ .Version }} -X {{ .Env.vpkg }}.gitCommit={{ .ShortCommit }} -X {{ .Env.vpkg }}.gitTreeState={{if .IsGitDirty}}dirty{{else}}clean{{end}} -X {{ .Env.vpkg }}.buildDate={{ .Date }}
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GOEXPERIMENT=boringcrypto
|
|
|
|
universal_binaries:
|
|
- replace: false
|
|
|
|
changelog:
|
|
disable: false
|
|
use: git
|
|
|
|
brews:
|
|
- name: hauler
|
|
repository:
|
|
owner: hauler-dev
|
|
name: homebrew-tap
|
|
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
|
|
directory: Formula
|
|
description: "Hauler CLI"
|
|
|
|
dockers:
|
|
- id: hauler-amd64
|
|
goos: linux
|
|
goarch: amd64
|
|
use: buildx
|
|
dockerfile: Dockerfile
|
|
build_flag_templates:
|
|
- "--platform=linux/amd64"
|
|
- "--target=release"
|
|
image_templates:
|
|
- "docker.io/hauler/hauler-amd64:{{ .Version }}"
|
|
- "ghcr.io/hauler-dev/hauler-amd64:{{ .Version }}"
|
|
- id: hauler-arm64
|
|
goos: linux
|
|
goarch: arm64
|
|
use: buildx
|
|
dockerfile: Dockerfile
|
|
build_flag_templates:
|
|
- "--platform=linux/arm64"
|
|
- "--target=release"
|
|
image_templates:
|
|
- "docker.io/hauler/hauler-arm64:{{ .Version }}"
|
|
- "ghcr.io/hauler-dev/hauler-arm64:{{ .Version }}"
|
|
- id: hauler-debug-amd64
|
|
goos: linux
|
|
goarch: amd64
|
|
use: buildx
|
|
dockerfile: Dockerfile
|
|
build_flag_templates:
|
|
- "--platform=linux/amd64"
|
|
- "--target=debug"
|
|
image_templates:
|
|
- "docker.io/hauler/hauler-debug-amd64:{{ .Version }}"
|
|
- "ghcr.io/hauler-dev/hauler-debug-amd64:{{ .Version }}"
|
|
- id: hauler-debug-arm64
|
|
goos: linux
|
|
goarch: arm64
|
|
use: buildx
|
|
dockerfile: Dockerfile
|
|
build_flag_templates:
|
|
- "--platform=linux/arm64"
|
|
- "--target=debug"
|
|
image_templates:
|
|
- "docker.io/hauler/hauler-debug-arm64:{{ .Version }}"
|
|
- "ghcr.io/hauler-dev/hauler-debug-arm64:{{ .Version }}"
|
|
|
|
docker_manifests:
|
|
- id: hauler-docker
|
|
use: docker
|
|
name_template: "docker.io/hauler/hauler:{{ .Version }}"
|
|
image_templates:
|
|
- "docker.io/hauler/hauler-amd64:{{ .Version }}"
|
|
- "docker.io/hauler/hauler-arm64:{{ .Version }}"
|
|
- id: hauler-ghcr
|
|
use: docker
|
|
name_template: "ghcr.io/hauler-dev/hauler:{{ .Version }}"
|
|
image_templates:
|
|
- "ghcr.io/hauler-dev/hauler-amd64:{{ .Version }}"
|
|
- "ghcr.io/hauler-dev/hauler-arm64:{{ .Version }}"
|
|
- id: hauler-debug-docker
|
|
use: docker
|
|
name_template: "docker.io/hauler/hauler-debug:{{ .Version }}"
|
|
image_templates:
|
|
- "docker.io/hauler/hauler-debug-amd64:{{ .Version }}"
|
|
- "docker.io/hauler/hauler-debug-arm64:{{ .Version }}"
|
|
- id: hauler-debug-ghcr
|
|
use: docker
|
|
name_template: "ghcr.io/hauler-dev/hauler-debug:{{ .Version }}"
|
|
image_templates:
|
|
- "ghcr.io/hauler-dev/hauler-debug-amd64:{{ .Version }}"
|
|
- "ghcr.io/hauler-dev/hauler-debug-arm64:{{ .Version }}"
|