ci: add the blocking dep-sync gate for the three-grouping workspace#480
Open
mfw78 wants to merge 1 commit into
Open
ci: add the blocking dep-sync gate for the three-grouping workspace#480mfw78 wants to merge 1 commit into
mfw78 wants to merge 1 commit into
Conversation
scripts/check-dep-sync.sh asserts the crate DAG points strictly up across nexum, videre and shepherd for every workspace member (path deps and wit/ symlinks included), and that the carve dependency artefacts agree wherever they exist: umbrella [patch] entries target the owning grouping's in-tree crates and neutralise every written git-tag pin with no orphans, pins agree on one tag per upstream repo, each Cargo.repo.toml member list mirrors the umbrella, and wit-deps manifests and locks stay key-synced with tags matching the Rust pins. Artefacts a train wave has not written yet skip visibly and enforce the moment they land. Wired as the blocking dep-sync CI job and a just check-dep-sync recipe; the git-tag to crates.io and wkg/OCI convergence path is documented in docs/design/cross-repo-deps.md.
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.
What
Adds
scripts/check-dep-sync.sh, a blockingdep-syncCI job, ajust check-dep-syncrecipe, anddocs/design/cross-repo-deps.mddocumenting the convergence path (git-tag pins now, crates.io/wkg later).Why
The three-grouping workspace needs an enforcing check that the crate DAG stays acyclic (nexum <- videre <- shepherd) and that the carve dependency artefacts (umbrella
[patch], git-tag pins, per-groupCargo.repo.toml,wit-depsmanifests/locks) stay in agreement as later waves land them, per issue scope.Testing
nix develop -c ./scripts/check-dep-sync.sh: DAG and wit checks pass across 37 members; pin/Cargo.repo.toml/wit-deps checks skip visibly (not yet written by later waves).nix develop -c cargo fmt --all --check: clean.AI Assistance
Drafted with Claude Code assistance; reviewed and tested by the author.
Closes #403