Isolate bridge verification from unrelated Gradle builds - #598
Open
bringhurst wants to merge 3 commits into
Open
bringhurst wants to merge 3 commits into
bringhurst wants to merge 3 commits into
Conversation
bringhurst
added this pull request to stack #582
September 11, 2026 23:48
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 bridge verifier ran
gradlew --stopin both checkouts before starting the broker test. Gradle's daemon registry is shared; those commands are not limited to this verification and can stop an unrelated build.All verifier and staging Gradle invocations already use
--no-daemon. Remove the global stop commands and the evidence rows that required them. Single-use Gradle processes exit after their command. Command timeouts still terminate only the process groups started by the verifier.The new dry-run regression inspects the actual full command plan. It fails before on
--stopand requires every direct Gradle command to use--no-daemon. All 85 Python tests and actual RAT pass after the change. No source, wrapper, archive, phase, record or protocol check is removed.This affects only the upgrade verifier. It does not change broker/client behavior, the client bootstrap configuration, or the independent CI foundations. Based on #597. Final-pair qualification and the F28 client-profile decision remain open.