-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bazelrc
28 lines (25 loc) · 1.36 KB
/
.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
build --incompatible_enable_cc_toolchain_resolution
build --cxxopt=-std=c++17 --host_cxxopt=-std=c++17
build --action_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 --incompatible_strict_action_env
build --show_timestamps
build --@rules_rust//rust/toolchain/channel=nightly
build --incompatible_merge_fixed_and_default_shell_env # https://github.com/bazelbuild/rules_rust/issues/2665
# Settings for remote build execution.
build:tcp-remote --experimental_allow_tags_propagation
build:tcp-remote --define=EXECUTOR=remote
build:tcp-remote --remote_executor=grpcs://remotebuildexecution.googleapis.com
build:tcp-remote --remote_instance_name=projects/560162532548/instances/default
build:tcp-remote --noremote_upload_local_results
build:tcp-remote --google_default_credentials
build:tcp-remote --extra_execution_platforms=//bazel:remote_platform
build:tcp-remote --host_platform=//bazel:remote_platform
build:tcp-remote --platforms=//bazel:remote_platform
build:tcp-remote --jobs=50
# Settings for uploading results to BES.
build:tcp-remote --bes_backend=buildeventservice-pa.googleapis.com
build:tcp-remote --bes_instance_name=560162532548
build:tcp-remote --bes_header=X-Goog-User-Project=560162532548
build:tcp-remote --bes_results_url=http://sponge2/
build:tcp-remote --grpc_keepalive_time=30s
# Enable TCP remote features when enabled for google-parfait.
common:parfait-remote --config=tcp-remote