-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add multiplex worker support to dexbuilder #15321
Add multiplex worker support to dexbuilder #15321
Conversation
ac96cd3
to
705bc91
Compare
Any updates on this? |
Oops, sorry for messing with the labels - I got some of my browser tabs mixed up. From a glance I don't see any major red flags; I'll discuss this internally. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall looks good - would you mind adding a test for this flag in src/test/shell/bazel/android/android_integration_test.sh?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, disregard my previous comment. I'll take care of the integration test. Overall LGTM, I'll push this through the internal processes.
Rather than adding a separate flag, there's https://bazel.build/reference/command-line-reference#flag--modify_execution_info So I think we could do the same thing with:
I believe that
|
Very much agree that we shouldn't add another tool-specific flag. I'm starting to regret the |
What about instead of flag proliferation we introduce an expansion CLI flag that sets all of the necessary |
The CLI expansion solution would look something like this. #15950 |
Thanks everyone, let's go with #15950 |
should we close this in favor of #15950 to avoid confusion |
Yes that sounds good |
Alternative approach to #15321 (comment) that leverages an expansion CLI flag instead of proliferating unique experimental multiplex flags. Closes #15950. PiperOrigin-RevId: 482004859 Change-Id: I176288fbc7934dc74b92e144aa0c43f30cb5471d
Adding full support for multiplexed dexbuilder workers. This PR is a continuation of #14623 (comment) where we added basic worker support.
Related issue: #10241