[PATCH] D132875: Fix bazel pre-merge check

Theodore Popp via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 29 11:10:15 PDT 2022


tpopp created this revision.
Herald added a project: All.
tpopp requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D132875

Files:
  utils/bazel/.bazelrc


Index: utils/bazel/.bazelrc
===================================================================
--- utils/bazel/.bazelrc
+++ utils/bazel/.bazelrc
@@ -168,6 +168,17 @@
 # Show test errors.
 build:ci --test_output=errors
 
+# Workaround bazel pre-merge failures.
+# RBE was removed. Instead ci should be used, but provide common values here.
+
+build:rbe --config=ci
+
+# Undo linker settings in generic_clang that are not supported in the current
+# environment of the bazel pre-merge checks. Remove once the docker container is
+# updated with clang-13 and lld-13
+build:rbe --linkopt="" --host_linkopt=""
+build:rbe --remote_cache=https://storage.googleapis.com/llvm-bazel-cache
+build:rbe --google_default_credentials=true
 ###############################################################################
 
 # The user.bazelrc file is not checked in but available for local mods.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D132875.456417.patch
Type: text/x-patch
Size: 881 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220829/ef311dc1/attachment.bin>


More information about the llvm-commits mailing list