-
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/zig-cache` (if you can) or `/tmp` (if not) 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. Fixes #134.
- Loading branch information
Motiejus Jakštys
committed
Dec 19, 2023
1 parent
660b0fd
commit 85d0453
Showing
5 changed files
with
55 additions
and
34 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,12 +1,9 @@ | ||
common --enable_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 --experimental_output_directory_naming_scheme=diff_against_dynamic_baseline | ||
build --sandbox_add_mount_pair=/tmp |
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.4.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 --experimental_output_directory_naming_scheme=diff_against_baseline | ||
build --sandbox_add_mount_pair=/tmp | ||
build --experimental_output_directory_naming_scheme=diff_against_dynamic_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_dynamic_baseline |