forked from buildbuddy-io/buildbuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bazelrc
28 lines (23 loc) · 1.39 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 with --config=local to send build logs to your local server
build:local --bes_results_url=http://localhost:8080/invocation/
build:local --bes_backend=grpc://localhost:1985
build:local --remote_cache=grpc://localhost:1985
build:local --remote_upload_local_results
# Build with --config=dev to send build logs to the dev server
build:dev --bes_results_url=https://app.buildbuddy.dev/invocation/
build:dev --bes_backend=grpcs://cloud.buildbuddy.dev
# Build with --config=dev-cache to send build logs to the dev server with cache
build:dev-cache --bes_results_url=https://app.buildbuddy.dev/invocation/
build:dev-cache --bes_backend=grpcs://cloud.buildbuddy.dev
build:dev-cache --remote_cache=grpcs://cloud.buildbuddy.dev
build:dev-cache --remote_upload_local_results
# Build with --config=cache to send build logs to the production server with cache
build:cache --bes_results_url=https://app.buildbuddy.io/invocation/
build:cache --bes_backend=grpcs://cloud.buildbuddy.io
build:cache --remote_cache=grpcs://cloud.buildbuddy.io
build:cache --remote_upload_local_results
# By default, build logs get sent to the production server
build --bes_results_url=https://app.buildbuddy.io/invocation/
build --bes_backend=grpcs://cloud.buildbuddy.io
# Recommended if connecting to a remote (upload speed constrained) BuildBuddy instance
build --noremote_upload_local_results # Uploads logs & artifacts without writing to cache