-
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
mobile-install fails with BWOB #14523
Comments
@jlaxson You might want to try |
cc @coeuvre |
cc @tjgq |
I think this can be solved by a similar approach like #16545. |
They were missing from the inputs, but since the action had the LOCAL execution requirement it ran locally without sandboxing, so this bug could only be triggered by building without the bytes. Also change the execution requirement to NO_REMOTE, which permits sandboxing and would have caught this issue even when building with the bytes. Related to #14523. PiperOrigin-RevId: 533549342 Change-Id: I731f15071e5e08822a298abc5146b91a56ba1071
In my testing, |
They were missing from the inputs, but since the action had the LOCAL execution requirement it ran locally without sandboxing, so this bug could only be triggered by building without the bytes. Also change the execution requirement to NO_REMOTE, which permits sandboxing and would have caught this issue even when building with the bytes. Related to bazelbuild#14523. PiperOrigin-RevId: 533549342 Change-Id: I731f15071e5e08822a298abc5146b91a56ba1071
Description of the problem / feature request:
When running a command like
bazel mobile-install --remote_download_outputs=minimal //:my_target
, the action fails with an error like:It succeeds if you switch --remote_download_outputs=minimal for --remote_download_outputs=all
Bugs: what's the simplest, easiest way to reproduce this bug? Please provide a minimal example if possible.
bazel mobile-install --remote_download_outputs=minimal //:my_android_binary_target
What operating system are you running Bazel on?
macOS 12
What's the output of
bazel info release
?release 5.0.0-pre.20210708.4
Have you found anything relevant by searching the web?
No mentions of classes.dex.zip in bazel issues.
The text was updated successfully, but these errors were encountered: