Adopt the gha module: one gha:: recipe per gating CI job - #78
Merged
Conversation
The sibling-family arrangement (websocket/webcrypto): CI job bodies live in .github/justfile (the gha module), each gating workflow job runs exactly one `just gha::<job>` recipe with per-recipe log groups and failure annotations, and `just ci` mirrors the gating jobs (actions-setup-smoke is excluded: it tests the actions/setup composite action and only runs under Actions). - The host-checks recipe becomes `check` (the family name for the fast gate); the CI job keeps the name through gha::host-checks. - The JUnit demo emit folds into gha::verify, so `just ci` produces the same artifacts CI's presentation steps render. - `_default` becomes a visible `default`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The sibling-family arrangement (websocket/webcrypto), adopted here: CI job bodies live in
.github/justfile(theghamodule), each gating workflow job runs exactly onejust gha::<job>recipe with per-recipe log groups and failure annotations, andjust cimirrors the gating jobs. The actions-setup-smoke job is excluded by design: it dogfoods theactions/setupcomposite action and only exists as workflow machinery.gha::host-checkssteps fmt-check, lint, test, wit-check;gha::verifystepsallthenemit-demo.host-checksrecipe becomescheck— the family name for the fast pre-commit gate; the CI job keeps its name throughgha::host-checks.gha::verify, sojust ciproduces the same artifacts CI's presentation steps (actions/aggregate, the junit reporter) render; those steps are untouched._defaultbecomes a visibledefault; AGENTS.md's recipe list gainsjust checkandjust ci.Verified: every
gha::_steptarget dry-run-resolves; the_stepwrapper exercised in local passthrough, GHA log-group, and failure-annotation modes; the workflow parses;just fmt-checkpasses; no stalejust host-checksreferences remain. The substantive gate is this PR's CI, which runs exactly the recipes it always ran, now through the gha module.