-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
REv2: Allow downloads from being prevented by emitting symlinks
By default, Bazel's REv2 client downloads all output files of a build action, which is slow. This can be disabled by using flags like --remote_download_minimal, but this causes bazel-out/ to be mostly empty, making the user experience suboptimal. This change introduces a middle ground: it allows people to develop virtual file systems (FUSE, NFS, 9p, etc. etc. etc.) that lazily expose the CAS onto people's systems. It does this by adding a new flag, --remote_download_symlink_template, that causes Bazel to generate symlinks that conform to a given template.
- Loading branch information
1 parent
d83fc58
commit 3d08acb
Showing
3 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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