We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 792f556 commit 36d5afcCopy full SHA for 36d5afc
.bazelignore
.bazelrc
@@ -4,3 +4,7 @@ common --host_per_file_copt=external/.*@-w
4
5
# Produce useful output when the build fails.
6
common --verbose_failures
7
+
8
+# Silence warnings about old bazel_dep pins. Bazel 8 brings along newer ones,
9
+# but we can support Bazel 7 (for now).
10
+common --check_direct_dependencies=off
.bazelversion
@@ -1 +1 @@
1
-7.2.1
+8.1.0
REPO.bazel
@@ -0,0 +1,10 @@
+ignore_directories(
2
+ [
3
+ # Don't accidentally pick up external CMake deps with Bazel build files.
+ "cmake-*",
+ "build",
+ "build-*",
+ # Don't treat submodules as part of this project.
+ "lib",
+ ],
+)
0 commit comments