blob: 379ebd732c125116317f6f6b71d5c7ce5421a31e [file] [log] [blame]
Miguel Young de la Sota369e0272022-04-21 13:14:23 -04001# Copyright lowRISC contributors.
2# Licensed under the Apache License, Version 2.0, see LICENSE for details.
3# SPDX-License-Identifier: Apache-2.0
4
5# These options disable the Bazel progress UI, resulting in output closer
6# to ninja and similar tools.
7common --color=no --curses=yes
8
9# These options ensure that Bazel prints *everything* it is doing as aggressively
10# as possible, but only updating once every second.
Miles Dai28acbee2022-04-22 16:52:17 -040011build --show_timestamps
Miguel Young de la Sota369e0272022-04-21 13:14:23 -040012build --show_progress_rate_limit=1
13
14# If something goes wrong, show the whole command line for it.
15build --verbose_failures
16
17# If one action fails, keep going, so that CI runs show as much actionable information
18# as possible.
19build --keep_going
20
21# Use the remote Bazel cache for CI.
22build --remote_cache=https://storage.googleapis.com/opentitan-bazel-cache
Miles Dai28acbee2022-04-22 16:52:17 -040023build --remote_timeout=60