feat(gradle): HEALTH, PROTO, DEPS filters + multi-task batch#6
Closed
Nava2 wants to merge 3 commits intographite-base/6from
Closed
feat(gradle): HEALTH, PROTO, DEPS filters + multi-task batch#6Nava2 wants to merge 3 commits intographite-base/6from
Nava2 wants to merge 3 commits intographite-base/6from
Conversation
8d318e1 to
5687a74
Compare
21229e1 to
1863e1f
Compare
5687a74 to
c732fab
Compare
This was referenced Mar 16, 2026
Collaborator
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Mar 16, 2026
Add remaining task-type filters: - health.rs: Passthrough (health output is already concise, just global filters) - proto.rs: Drop proto extraction noise, keep error lines - deps.rs: Truncate dependency tree to depth 0-1, show transitive count - batch.rs: Split multi-task output by > Task boundaries, apply per-section filters, format with "--- :task FAILED ---" headers and "✓" for successes. Uses raw input for task boundary detection (before global filter strips bare > Task lines). Deduplicates tasks that appear as both success and failed. Update mod.rs filter_gradle_output to detect batch runs and route to batch::filter_batch_from_raw for multi-task handling. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Nava2
commented
Mar 16, 2026
Collaborator
Author
There was a problem hiding this comment.
this pr is too large, lets break it down into specific batch / deps / health / proto.
Collaborator
Author
There was a problem hiding this comment.
verify this is the actual output we would expect to see -- I don't think it is. Gradle will combine the end failure outputs unless I'm mistaken.
c732fab to
b3253e5
Compare
1863e1f to
aaabd64
Compare
This was referenced Mar 16, 2026
Collaborator
Author
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.

Summary
health.rs: Passthrough (health output is already concise)proto.rs: Drop proto extraction noise, keep error linesdeps.rs: Truncate dependency tree to depth 0-1, show transitive countbatch.rs: Split multi-task output by> Taskboundaries, apply per-section filters (compile, test, detekt), format with--- :task FAILED ---headers and✓for successes> Tasklines)Stack
scaffold → global-filters → compile → test-filter → detekt → 6/7 — this PR → hooks-docs
Test plan
cargo fmt --all --check && cargo clippy --all-targets && cargo test --all🤖 Generated with Claude Code