Skip to content

Commit aa92f19

Browse files
josephperrottalxhub
authored andcommitted
build: update to bazel version 8.4.2
Update bazel to use version 8.4.2
1 parent 22eda59 commit aa92f19

File tree

8 files changed

+484
-701
lines changed

8 files changed

+484
-701
lines changed

.bazelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ build:trusted-build --remote_upload_local_results=true
146146
# Ensure that tags like "no-remote-exec" get propagated to actions created by rules,
147147
# even if the rule implementation does not explicitly pass them to the execution requirements.
148148
# https://bazel.build/reference/command-line-reference#flag--experimental_allow_tags_propagation
149-
common --experimental_allow_tags_propagation
149+
common --incompatible_allow_tags_propagation
150150

151151
# Disable network access in the sandbox by default. To enable network access
152152
# for a particular target, use:

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.7.1
1+
8.4.2

MODULE.bazel.lock

Lines changed: 478 additions & 688 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adev/shared-docs/pipeline/shared/marked/test/mermaid/BUILD.bazel

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@ zoneless_jasmine_test(
2020
data = [
2121
":unit_test_lib",
2222
"@rules_browsers//browsers/chromium",
23-
] + glob([
24-
"**/*.md",
25-
"**/*.svg",
26-
"**/*.mts",
27-
]),
23+
],
2824
env = {
2925
"CHROME_HEADLESS_BIN": "$(CHROME-HEADLESS-SHELL)",
3026
},

adev/src/context/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ filegroup(
66
name = "context",
77
srcs = glob([
88
"**/*.md",
9-
"**/*.txt",
109
"**/*.mdc",
1110
]),
1211
visibility = ["//visibility:public"],

devtools/projects/shell-browser/src/assets/BUILD.bazel

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ package(default_visibility = ["//:__subpackages__"])
33
filegroup(
44
name = "assets",
55
srcs = glob([
6-
"*.svg",
7-
"**/*.png",
8-
"*.css",
6+
"*.png",
97
]) + [
108
"//third_party/fonts.google.com/material-symbols-outlined",
119
],

packages/compiler-cli/test/compliance/partial/partial_compliance_goldens.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def partial_compliance_golden(filePath):
1313
"//packages/core:npm_package",
1414
"//packages:package_json",
1515
filePath,
16-
] + native.glob(["%s/*.ts" % path, "%s/**/*.html" % path, "%s/**/*.css" % path])
16+
] + native.glob(["%s/*.ts" % path, "%s/**/*.html" % path, "%s/**/*.css" % path], allow_empty = True)
1717

1818
js_binary(
1919
name = generate_partial_name,

tools/symbol-extractor/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ts_project(
3636

3737
jasmine_test(
3838
name = "test",
39-
data = glob(["symbol_extractor_spec/**"]) + [
39+
data = [
4040
":test_lib",
4141
"//tools/symbol-extractor/symbol_extractor_spec:es2015_class_output",
4242
"//tools/symbol-extractor/symbol_extractor_spec:fixtures",

0 commit comments

Comments
 (0)