c1fb2355c4
Adopts the FabledRulebook ci-runners.md policy: workflows select
toolchains via container.image, not via runs-on labels. `runs-on`
stays as the scheduling handle only.
Workflows updated:
- test-go.yml: ci-go:1.26 on both `test` and `integration` jobs.
- test-web.yml: ci-go:1.26 (bundles Node + npm); the
actions/setup-node@v4 step is removed.
- flutter.yml: ci-flutter:3.44 (Flutter 3.44 + Android + Java 25).
- release.yml: ci-go:1.26 (ships docker CLI + buildx).
Side effect: this unblocks the Go server deps bump (commit 6a62120)
which auto-bumped go.mod to `go 1.25.0` via x/crypto v0.51.0's
minimum — ci-go:1.26 satisfies it with headroom.
Adds ci-requirements.md at repo root per the ci-runners.md
"every project ships a requirements sheet" rule. Documents:
runtime images consumed, image deps used per workflow, per-job
installs (none), and a Notes section covering the integration
docker-socket dependency, the toolchain pin rationale, and the
in-app-update channel polling.
Tracked in local task #70.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
3.8 KiB
3.8 KiB
CI Requirements — Minstrel
Copy of the template. Family-wide policy:
ci-runners.mdin the FabledRulebook.
Runtime images
Minstrel's four workflows consume two CI images:
git.fabledsword.com/bvandeusen/ci-go:1.26
git.fabledsword.com/bvandeusen/ci-flutter:3.44
ci-go:1.26— Go server tests (.forgejo/workflows/test-go.yml), web SPA tests (.forgejo/workflows/test-web.yml), and the release container build (.forgejo/workflows/release.yml).ci-flutter:3.44— Flutter client tests + debug/release APK builds (.forgejo/workflows/flutter.yml).
Image deps used
From ci-go:1.26
- Go (1.26 toolchain) —
go vet,go test -race,go build,go mod. - Node + npm —
npm ciandnpm test/npm run checkintest-web.yml. - golangci-lint — lint pass in
test-go.yml. - docker CLI — bridge-IP discovery of the per-job Postgres service container in
test-go.ymlintegration job (via the runner's shared/var/run/docker.sock). - docker buildx — release container build + push in
release.yml. - curl — release-asset polling / upload in
release.yml.
From ci-flutter:3.44
- Flutter (3.44 stable channel) —
flutter pub get,flutter analyze --fatal-infos,flutter test,flutter build apk(debug + signed release). - Dart —
dart run tool/gen_tokens.dart,dart run build_runner build(drift codegen). - Android SDK + NDK + cmdline-tools + build-tools — APK assembly + signing.
- Java 25 — Gradle / Android build.
- git —
actions/checkout@v4baseline (and any shell git operations). - base64 + curl — keystore decode + release-asset upload in the tag-build path.
Per-job tool installs
None.
Notes
- Label/image split. Workflows keep
runs-on: go-ci/runs-on: flutter-cias the scheduling label per theci-runners.md"label = scheduling handle, image =container.image" pattern. The labels are intentional handles, not toolchain assertions. - Integration-job docker-socket dependency.
test-go.yml's integration job uses the runner's shared docker socket (/var/run/docker.sock) to bridge-IP-discover the per-job Postgres service container by name + network intersection — the dev compose'sminstrel-postgres-*containers are explicitly skipped as belt-and-suspenders. Depends onact_runner.valid_volumeswhitelisting the socket; if that ever stops auto-mounting, integration tests fail at thedocker inspectstep. - Go toolchain pin.
go.modis ongo 1.25.0becausegolang.org/x/crypto v0.51.0declares 1.25 as its minimum.ci-go:1.26satisfies this with headroom. Futurex/cryptobumps that move the Go floor should be paired with an image-tag bump in this file + the workflows. - In-app update channel polling.
release.ymlpolls Forgejo's release-asset API for up to 15 min on tag pushes to fetch the APK thatflutter.ymlis concurrently attaching to the same release. The asset eventually appears becauseflutter.ymlandrelease.ymlrun in parallel on the same tag; if the polling times out, the server image ships without the bundled update channel (graceful degradation, not a build failure). - Cache server reachability.
test-web.ymldoes NOT usecache: 'npm'onactions/setup-node— the Forgejo Actions cache server isn't reachable from this runner's container network andsetup-nodewas burning ~4m41s on ETIMEDOUT before failing open. With the migration toci-go:1.26,setup-nodeis removed entirely (Node is in the image). The cache concern reappears if a future change re-introduces a network-dependent action. - Friction asks. None pending. The two images cover everything Minstrel needs.