From f3854f1077d3b330da016281eb65d6443720618e Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 6 Mar 2026 17:40:40 +0000 Subject: [PATCH] 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 --- .core/build.yaml | 28 ++++++++++++++++++++++++++++ .core/release.yaml | 24 ++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 .core/build.yaml create mode 100644 .core/release.yaml diff --git a/.core/build.yaml b/.core/build.yaml new file mode 100644 index 0000000..dbec905 --- /dev/null +++ b/.core/build.yaml @@ -0,0 +1,28 @@ +# 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 diff --git a/.core/release.yaml b/.core/release.yaml new file mode 100644 index 0000000..3bdbbff --- /dev/null +++ b/.core/release.yaml @@ -0,0 +1,24 @@ +# Core Go Framework release configuration +# Used by: core ci +# Library module — no binary artifacts, tag-only releases. + +version: 1 + +project: + name: core-go + repository: core/go + +publishers: [] + +changelog: + include: + - feat + - fix + - perf + - refactor + exclude: + - chore + - docs + - style + - test + - ci