-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bazel arguments which apply globally should use the common group
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# When working with hermetic Python toolchains, supporting the legacy runfiles layout is needlessly wasting resources. | ||
# See https://github.com/bazelbuild/rules_python/issues/1653 | ||
build --nolegacy_external_runfiles | ||
common --nolegacy_external_runfiles | ||
|
||
# The symlinks are annoying | ||
build --experimental_convenience_symlinks=clean | ||
common --experimental_convenience_symlinks=clean | ||
|
||
# The performance gains offered by the lockfile are minimal for us. | ||
# Pinning the dependencies should be superfluous from a reproducibility perspective as the central registry is supposed | ||
# to be immutable for a module X in version Y after it has ben registered with the registry (ignoring the possibility of | ||
# yanking a module). Furthermore, the module resolution is deterministic. | ||
# However, there are several open issues suggesting the lock file will change in one way or another. | ||
# Thus, we don't use the bzlmod locking yet. | ||
build --lockfile_mode=off | ||
common --lockfile_mode=off |