Build system, release automation, SDK generation, Ansible executor, LinuxKit dev environments, container runtime, deployment, infra metrics, and developer toolkit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
363 B
YAML
25 lines
363 B
YAML
# Example build configuration for Core build system
|
|
version: 1
|
|
|
|
project:
|
|
name: example-cli
|
|
description: An example CLI application
|
|
main: ./cmd/example
|
|
binary: example
|
|
|
|
build:
|
|
cgo: false
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s
|
|
- -w
|
|
env: []
|
|
|
|
targets:
|
|
- os: linux
|
|
arch: amd64
|
|
- os: darwin
|
|
arch: arm64
|
|
- os: windows
|
|
arch: amd64
|