-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bazelrc
31 lines (22 loc) · 950 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
31
common --enable_bzlmod
# enable common config by default (needed for renovate to ignore the file: registry)
common --config common
common:common --registry=file:///%workspace%/registry
build:ci --loading_phase_threads=1
build:ci --jobs=2
build:ci --verbose_failures
common:ci --color=no
test:ci --test_output=errors
build --incompatible_enable_cc_toolchain_resolution
try-import %workspace%/.bazel-nix.rc
# test environment does not propagate locales by default
# some tests reads files written in UTF8, we need to propagate the correct
# environment variables, such as LOCALE_ARCHIVE
# We also need to setup an utf8 locale
test --test_env=LANG=en_US.utf8 --test_env=LOCALE_ARCHIVE
# CI configuration
build:ci --bes_results_url=https://app.buildbuddy.io/invocation/
build:ci --bes_backend=grpcs://remote.buildbuddy.io
build:ci --remote_cache=grpcs://remote.buildbuddy.io
build:ci --remote_timeout=36002
try-import %workspace%/.bazelrc.local