• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# This file contains Bazel settings to apply on CI only.
2
3# Debug where options came from
4build --announce_rc
5# This directory is configured in GitHub actions to be persisted between runs.
6build --disk_cache=~/.cache/bazel
7build --repository_cache=~/.cache/bazel-repo
8# Don't rely on test logs being easily accessible from the test runner,
9# though it makes the log noisier.
10test --test_output=errors
11# Allows tests to run bazelisk-in-bazel, since this is the cache folder used
12test --test_env=XDG_CACHE_HOME
13