Commit6736fa06Recorded26 Apr 2026Repositorysigil-args

Add Woodpecker CI; drop CHANGELOG.md

Message

- .woodpecker.yml: minimal pipeline that fetches the pinned sigil v0.14.0 release binary, runs sigil deps install, then sigil test on push + PR + manual triggers. Bump the pin via search/replace when a new release is cut. - Drop the inherited CHANGELOG.md per the no-CHANGELOG policy: release narrative now lives in annotated git tags. See procedures/library-release-conventions.

Changed
 .woodpecker.yml | 11 ++++++-----
 CHANGELOG.md    | 15 ---------------
 sigil.lock      |  9 +++++++++
 3 files changed, 15 insertions(+), 20 deletions(-)
Diff
.woodpecker.ymlmodified
@@ -1,10 +1,11 @@
1
# Woodpecker CI configuration for Codeberg
2
# https://docs.codeberg.org/ci/
3
#
4
# Library CI: fetch a stable sigil binary, install deps via from-git
5
# pins, run the test suite. Pinning to a sigil release rather than
6
# `dev` keeps CI stable when the monorepo is in flight; bump the
7
# pin via search/replace when a new release is cut.
+4
# Library CI: fetch the pinned sigil release binary, install deps via
+5
# from-git pins, run the test suite. Pinned to a specific monorepo
+6
# release (rather than the rolling `dev`) so a flaky monorepo doesn't
+7
# cascade across all extracted-repo CIs. Bump via search/replace when
+8
# a new release is cut.
9
10
when:
11
- event: [push, pull_request, manual]
@@ -17,7 +18,7 @@ steps:
18
image: *alpine_image
19
commands:
20
- apk add --no-cache curl ca-certificates git
20
- curl -fLo ./sigil https://codeberg.org/sigil/sigil/releases/download/v0.13.1/sigil-linux-amd64-static
+21
- curl -fLo ./sigil https://codeberg.org/sigil/sigil/releases/download/v0.14.0/sigil-linux-amd64-static
22
- chmod +x ./sigil
23
- ./sigil --version
24
- ./sigil deps install
CHANGELOG.mddeleted
@@ -1,15 +0,0 @@
1
# Changelog
2
3
All notable changes to this project will be documented in this file.
4
5
The format is based on [Keep a Changelog](https://keepachangelog.com/),
6
and this project adheres to [Semantic Versioning](https://semver.org/).
7
8
## [0.13.1] - 2026-04-26
9
10
### Added
11
12
- Initial standalone release of `sigil-args`, extracted from the
13
[`sigil`](https://codeberg.org/sigil/sigil) monorepo as part of the
14
W17 extraction wave. No functional changes from the in-monorepo
15
version at the same tag.
sigil.lockadded
@@ -0,0 +1,9 @@
+1
;; Auto-generated by sigil deps install. Do not edit.
+2
(lock
+3
(package name: "sigil-stdlib"
+4
url: "codeberg:sigil/sigil-lang"
+5
ref: "^0.14"
+6
sha: "dba24e3fe531bc150bcf93444e764f87fb321850"
+7
package-selector: "sigil-stdlib"
+8
version: "0.14.1")
+9
)