-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- `.bazelrc`: `sandbox_add_mount_pair=/tmp` is now required everywhere. - `.bazelrc` and `README`: remove deprecated/now-default flags. - `README`: add links to #10 and #83. - `README`: mention bzlmod. - `examples/*/.bazelrc`: make them the same for a better recommendation. The top-level project itself is not bzlmod yet, because that's book-keeping (it can already be used with bzlmod, so this is purely book-keeping). We can tackle this out of band with dependency updates.
- Loading branch information
Motiejus Jakštys
committed
Dec 13, 2023
1 parent
f3c605e
commit 894acb7
Showing
5 changed files
with
57 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
common --noenable_bzlmod | ||
|
||
test --sandbox_default_allow_network=false | ||
test --test_output=errors | ||
|
||
build --verbose_failures | ||
build --worker_sandboxing | ||
|
||
build --experimental_reuse_sandbox_directories | ||
build --incompatible_enable_cc_toolchain_resolution | ||
build --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 | ||
build --sandbox_add_mount_pair=/tmp | ||
build --experimental_output_directory_naming_scheme=diff_against_baseline |
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 +1 @@ | ||
6.3.0 | ||
7.0.0 |
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,11 +1,11 @@ | ||
common --enable_bzlmod | ||
# Copyright 2023 Uber Technologies, Inc. | ||
# Licensed under the MIT License | ||
test --sandbox_default_allow_network=false | ||
test --test_output=errors | ||
|
||
build --verbose_failures | ||
build --worker_sandboxing | ||
|
||
build --experimental_reuse_sandbox_directories | ||
build --incompatible_enable_cc_toolchain_resolution | ||
build --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 | ||
build --sandbox_add_mount_pair=/tmp | ||
build --experimental_output_directory_naming_scheme=diff_against_baseline |
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,5 +1,11 @@ | ||
# Copyright 2023 Uber Technologies, Inc. | ||
# Licensed under the MIT License | ||
test --sandbox_default_allow_network=false | ||
test --test_output=errors | ||
|
||
build --verbose_failures | ||
build --worker_sandboxing | ||
|
||
build --incompatible_enable_cc_toolchain_resolution | ||
build --action_env BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 | ||
build --sandbox_add_mount_pair=/tmp | ||
build --experimental_output_directory_naming_scheme=diff_against_baseline |