• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Configuration for mac bazel test runs on CI
2# Bazel RBE doesn't currently support MacOS platform,
3# so we configure actions to execute locally,
4# but we still use RBE for build cache and to upload
5# results to ResultStore.
6
7import %workspace%/tools/remote_build/include/rbe_base_config.bazelrc
8
9# Disable uploading to build cache by default. This is to prevent
10# polluting the build cache with locally-started builds.
11# When running on CI, we will override this setting along
12# with cache silo keys that prevent the build from being broken
13# by unintentional cache hits.
14build --remote_upload_local_results=false
15
16build --test_tag_filters=-no_mac
17build --build_tag_filters=-no_mac
18
19# Dynamic link cause issues like: `dyld: malformed mach-o: load commands size (59272) > 32768`
20# https://github.com/bazelbuild/bazel/issues/9190
21build --dynamic_mode=off
22
23import %workspace%/tools/remote_build/include/test_config_common.bazelrc
24