mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
6c6e2ca2f4
Options adapted from https://docs.aspect.build/guides/bazelrc bazel: adopt best practices for bazelrc Options adapted from https://docs.aspect.build/guides/bazelrc
16 lines
983 B
Plaintext
16 lines
983 B
Plaintext
# Speed up all builds by not checking if external repository files have been modified.
|
|
# Docs: https://github.com/bazelbuild/bazel/blob/1af61b21df99edc2fc66939cdf14449c2661f873/src/main/java/com/google/devtools/build/lib/bazel/repository/RepositoryOptions.java#L244
|
|
build --noexperimental_check_external_repository_files
|
|
fetch --noexperimental_check_external_repository_files
|
|
query --noexperimental_check_external_repository_files
|
|
|
|
# Directories used by sandboxed non-worker execution may be reused to avoid unnecessary setup costs.
|
|
# Save time on Sandbox creation and deletion when many of the same kind of action run during the
|
|
# build.
|
|
# Docs: https://bazel.build/reference/command-line-reference#flag--reuse_sandbox_directories
|
|
build --reuse_sandbox_directories
|
|
|
|
# Avoid this flag being enabled by remote_download_minimal or remote_download_toplevel
|
|
# See https://meroton.com/blog/bazel-6-errors-build-without-the-bytes/
|
|
build --noexperimental_action_cache_store_output_metadata
|