-
Notifications
You must be signed in to change notification settings - Fork 10
/
.bazelrc
30 lines (25 loc) · 1002 Bytes
/
.bazelrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Required for Bazel versions <7, where bzlmod is not enabled by default
common --enable_bzlmod
build --incompatible_sandbox_hermetic_tmp
build --lockfile_mode=update
common --enable_platform_specific_config
common --experimental_announce_profile_path
coverage --combined_report=lcov
# These are required to make coverage work.
coverage --experimental_fetch_all_coverage_outputs
coverage --experimental_split_coverage_postprocessing
# The Coverage report generator can't run remotely because it's missing some
# RE platform options (especially containerImage).
coverage --strategy=CoverageReport=local
build --explicit_java_test_deps
build --nostamp
build --incompatible_strict_action_env
build --verbose_failures
# Java Options
build --java_language_version=17
build --java_runtime_version=remotejdk_17
build --tool_java_language_version=17
build --tool_java_runtime_version=remotejdk_17
build --javacopt=-Xep:FutureReturnValueIgnored:ERROR
test --test_summary=testcase
test --test_output=errors