Skip to content

Commit

Permalink
fix(bazel/browsers): exclude a log file that chromium writes to on li…
Browse files Browse the repository at this point in the history
…nux (#795)

causing cache misses

PR Close #795
  • Loading branch information
kormide authored and josephperrott committed Aug 24, 2022
1 parent e40723e commit 7af5d34
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bazel/browsers/chromium/chromium.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ def define_chromium_repositories():
named_files = {
"CHROMIUM": "chrome-linux/chrome",
},
exclude_patterns = [
# Exclude a log file that chromium writes to each run, causing remote cache
# misses in downstream targets.
"chrome-linux/chrome_debug.log",
],
)

browser_archive(
Expand Down

0 comments on commit 7af5d34

Please sign in to comment.