forked from tweag/rules_nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bazelrc.ci
21 lines (19 loc) · 851 Bytes
/
.bazelrc.ci
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# CI Configuration
# ----------------
# This will be activated by the CI runner.
# Add `import %workspace%/.bazelrc.ci` to your `.bazelrc.local` and set
# `--config ci` to test this configuration locally.
common:ci --color=no
build:ci --verbose_failures
test:ci --test_output=errors
# Use a remote cache during CI
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=3600
build:ci --experimental_remote_cache_compression
build:ci --experimental_remote_cache_async
build:ci --remote_download_toplevel
# Avoid failures of the form `deadline exceeded after 14999958197ns DEADLINE_EXCEEDED`.
# See https://github.com/tweag/rules_haskell/issues/1498.
build:ci --keep_backend_build_event_connections_alive=false