mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
60 lines
3.8 KiB
Plaintext
60 lines
3.8 KiB
Plaintext
# Don't allow network access for build actions in the sandbox.
|
|
# Ensures that you don't accidentally make non-hermetic actions/tests which depend on remote
|
|
# services.
|
|
# Developers should tag targets with `tags=["requires-network"]` to opt-out of the enforcement.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--sandbox_default_allow_network
|
|
build --sandbox_default_allow_network=false
|
|
|
|
# Allow the Bazel server to check directory sources for changes. Ensures that the Bazel server
|
|
# notices when a directory changes, if you have a directory listed in the srcs of some target.
|
|
# Recommended when using
|
|
# [copy_directory](https://github.com/aspect-build/bazel-lib/blob/main/docs/copy_directory.md) and
|
|
# [rules_js](https://github.com/aspect-build/rules_js) since npm package are source directories
|
|
# inputs to copy_directory actions.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--host_jvm_args
|
|
startup --host_jvm_args=-DBAZEL_TRACK_SOURCE_DIRECTORIES=1
|
|
|
|
# Allow exclusive tests to run in the sandbox. Fixes a bug where Bazel doesn't enable sandboxing for
|
|
# tests with `tags=["exclusive"]`.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--incompatible_exclusive_test_sandboxed
|
|
test --incompatible_exclusive_test_sandboxed
|
|
|
|
# Use a static value for `PATH` and does not inherit `LD_LIBRARY_PATH`. Doesn't let environment
|
|
# variables like `PATH` sneak into the build, which can cause massive cache misses when they change.
|
|
# Use `--action_env=ENV_VARIABLE` if you want to inherit specific environment variables from the
|
|
# client, but note that doing so can prevent cross-user caching if a shared cache is used.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--incompatible_strict_action_env
|
|
build --incompatible_strict_action_env
|
|
|
|
# Propagate tags from a target declaration to the actions' execution requirements.
|
|
# Ensures that tags applied in your BUILD file, like `tags=["no-remote"]`
|
|
# get propagated to actions created by the rule.
|
|
# Without this option, you rely on rules authors to manually check the tags you passed
|
|
# and apply relevant ones to the actions they create.
|
|
# See https://github.com/bazelbuild/bazel/issues/8830 for details.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--experimental_allow_tags_propagation
|
|
build --experimental_allow_tags_propagation
|
|
fetch --experimental_allow_tags_propagation
|
|
query --experimental_allow_tags_propagation
|
|
|
|
# Do not automatically create `__init__.py` files in the runfiles of Python targets. Fixes the wrong
|
|
# default that comes from Google's internal monorepo by using `__init__.py` to delimit a Python
|
|
# package. Precisely, when a `py_binary` or `py_test` target has `legacy_create_init` set to `auto (the
|
|
# default), it is treated as false if and only if this flag is set. See
|
|
# https://github.com/bazelbuild/bazel/issues/10076.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--incompatible_default_to_explicit_init_py
|
|
build --incompatible_default_to_explicit_init_py
|
|
|
|
# Set default value of `allow_empty` to `False` in `glob()`. This prevents a common mistake when
|
|
# attempting to use `glob()` to match files in a subdirectory that is opaque to the current package
|
|
# because it contains a BUILD file. See https://github.com/bazelbuild/bazel/issues/8195.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--incompatible_disallow_empty_glob
|
|
common --incompatible_disallow_empty_glob
|
|
|
|
# Always download coverage files for tests from the remote cache. By default, coverage files are not
|
|
# downloaded on test result cache hits when --remote_download_minimal is enabled, making it impossible
|
|
# to generate a full coverage report.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--experimental_fetch_all_coverage_outputs
|
|
# detching remote cache results
|
|
test --experimental_fetch_all_coverage_outputs
|