豆豆友情提示:这是一个非官方 GitHub 代理镜像,主要用于网络测试或访问加速。请勿在此进行登录、注册或处理任何敏感信息。进行这些操作请务必访问官方网站 github.com。 Raw 内容也通过此代理提供。
Skip to content

Commit 7af5d34

Browse files
kormidejosephperrott
authored andcommitted
fix(bazel/browsers): exclude a log file that chromium writes to on linux (#795)
causing cache misses PR Close #795
1 parent e40723e commit 7af5d34

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

bazel/browsers/chromium/chromium.bzl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ def define_chromium_repositories():
2121
named_files = {
2222
"CHROMIUM": "chrome-linux/chrome",
2323
},
24+
exclude_patterns = [
25+
# Exclude a log file that chromium writes to each run, causing remote cache
26+
# misses in downstream targets.
27+
"chrome-linux/chrome_debug.log",
28+
],
2429
)
2530

2631
browser_archive(

0 commit comments

Comments
 (0)