go/.core/build.yaml
Snider f3854f1077 feat: add .core/ build and release configuration
Adopts go-devops build system for the core framework library.
Build config validates compilation across targets, release config
enables changelog generation for tag-only library releases.

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-06 17:40:40 +00:00

28 lines
484 B
YAML

# Core Go Framework build configuration
# Used by: core build
# Note: This is a library module (no binary). Build validates compilation only.
version: 1
project:
name: core-go
description: Core Go Framework — dependency injection and lifecycle management
binary: ""
build:
cgo: false
flags:
- -trimpath
ldflags:
- -s
- -w
targets:
- os: linux
arch: amd64
- os: linux
arch: arm64
- os: darwin
arch: arm64
- os: windows
arch: amd64