diff --git a/src/MODULE.tools b/src/MODULE.tools index 921092d1373f8f..a1b872cea857bf 100644 --- a/src/MODULE.tools +++ b/src/MODULE.tools @@ -37,6 +37,7 @@ use_repo(buildozer_binary, "buildozer_binary") # Dependencies used to auto-load removed symbols and rules from Bazel (due to Starlarkification) # See also: --incompatible_autoload_externally, AutoloadSymbols +bazel_dep(name = "protobuf", version = "29.0-rc2") bazel_dep(name = "rules_java", version = "8.2.0") bazel_dep(name = "rules_cc", version = "0.0.13") bazel_dep(name = "rules_python", version = "0.36.0") diff --git a/src/test/shell/integration/discard_graph_edges_test.sh b/src/test/shell/integration/discard_graph_edges_test.sh index 26b53743cf67f2..301fdc777f4263 100755 --- a/src/test/shell/integration/discard_graph_edges_test.sh +++ b/src/test/shell/integration/discard_graph_edges_test.sh @@ -274,13 +274,13 @@ function test_packages_cleared() { # is still low (external packages don't contribute there). We can lower this # number again once we remove WORKSPACE logic and move repo rules to not use # Package anymore. - [[ "$package_count" -le 53 ]] \ + [[ "$package_count" -le 56 ]] \ || fail "package count $package_count too high" globs_count="$(extract_histogram_count "$histo_file" "GlobsValue$")" [[ "$globs_count" -le 1 ]] \ || fail "globs count $globs_count too high" module_count="$(extract_histogram_count "$histo_file" 'eval.Module$')" - [[ "$module_count" -le 270 ]] \ + [[ "$module_count" -le 295 ]] \ || fail "Module count $module_count too high" ct_count="$(extract_histogram_count "$histo_file" \ 'RuleConfiguredTarget$')" diff --git a/src/test/shell/testenv.sh b/src/test/shell/testenv.sh index 90c45d818f78a6..06cfb32919626f 100755 --- a/src/test/shell/testenv.sh +++ b/src/test/shell/testenv.sh @@ -592,12 +592,6 @@ function add_rules_license() { function add_protobuf() { add_bazel_dep "protobuf" "$1" - cat >> "$1" <