From 279c3a5be3b4f3030584033823f19752325d08ce Mon Sep 17 00:00:00 2001 From: Geoffrey Martin-Noble Date: Mon, 12 Jul 2021 12:14:11 -0700 Subject: [PATCH] [Bazel] ignore build files under libcxx's copy of google-benchmark https://github.com/llvm/llvm-project/commit/5208ec5c66dc updated the of google-benchmark under libcxx adding a BUILD.bazel file. This upsets Bazel in our overlay configuration because it tries to interpret this file. Currently this is breaking the CI: https://buildkite.com/llvm-project/upstream-bazel-rbe/builds/1828 Tested (same command the CI uses) `bazel query //... + @llvm-project//... | xargs bazel test --config=generic-clang --config=rbe --test_output=errors --test_tag_filters=-nobuildkite --build_tag_filters=-nobuildkite` Differential Revision: https://reviews.llvm.org/D105833 --- utils/bazel/llvm-project-overlay/.bazelignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/bazel/llvm-project-overlay/.bazelignore b/utils/bazel/llvm-project-overlay/.bazelignore index ff00182..e116496 100644 --- a/utils/bazel/llvm-project-overlay/.bazelignore +++ b/utils/bazel/llvm-project-overlay/.bazelignore @@ -1,2 +1,4 @@ # Ignore the utils/bazel directory when this is overlayed onto the repo root. utils/bazel +# This directory has a Bazel config +libcxx/utils/google-benchmark -- 2.7.4