build: track master instead of pinning revs, and fix the build - #159
Merged
Conversation
added 2 commits
August 16, 2026 17:56
The engine repin moved apps/gui but not crates/blitz-bench, which still asked for tauri-runtime-blitz at 9edbec2 for blitz-control-protocol. Cargo.lock then carried both revs and check-one-rev-per-git-source.sh failed the build. Local cargo check -p az-gui passed because it never touched the bench crate, which is the gap the script exists to cover. 0.8.7.
Four of the five git revs in this workspace were pinned for no reason beyond inertia, and keeping them in step by hand is what broke the last two builds: apps/gui, crates/blitz-bench and apps/blitz-preview each named a different tauri-runtime-blitz rev, and cargo resolving one source at three revisions is exactly what check-one-rev-per-git-source.sh rejects. tauri-runtime-blitz (three manifests) and agent-experimental now track master, so there is nothing to keep in step. worktable stays pinned and says why in a comment: master has moved to an arctic-wt cargo cannot select alongside this workspace, so branch = master fails to resolve rather than building something newer. clippy -D warnings, 282 tests, and the one-rev guard all pass.
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 az build failed on
scripts/check-one-rev-per-git-source.sh:The engine repin moved
apps/guibut notcrates/blitz-bench, which still asked for trb at9edbec2forblitz-control-protocol. A localcargo check -p az-guipassed because it never touches the bench crate, which is the gap that script exists to cover.apps/blitz-previewwas on a third rev (070ab3a).Rather than repin three manifests by hand again, they now track
branch = "master".agent-experimentaltoo. Keeping revs in step manually is what broke the last two builds.worktablestays pinned and now carries a comment saying why: master has moved to anarctic-wtcargo cannot select alongside this workspace, sobranch = "master"fails to resolve rather than building something newer. It is the only rev left in the repo.Verified locally: one-rev guard passes,
cargo clippy --workspace --all-targets --features experimental,webview-runtime -- -D warningsclean, 282 tests pass.0.8.7.
🤖 Generated with Claude Code