Commit 44945e78 authored by phajdan.jr's avatar phajdan.jr Committed by Commit bot

infra_paths: enable persistent cache also on Mac

BUG=584079, 459840, 593999, 596887

Review-Url: https://codereview.chromium.org/2095333002
parent dc3dede9
...@@ -33,7 +33,7 @@ def infra_kitchen(c): ...@@ -33,7 +33,7 @@ def infra_kitchen(c):
# TODO(phajdan.jr): set persistent cache path for remaining platforms. # TODO(phajdan.jr): set persistent cache path for remaining platforms.
# NOTE: do not use /b/swarm_slave here - it gets deleted on bot redeploy, # NOTE: do not use /b/swarm_slave here - it gets deleted on bot redeploy,
# and may happen even after a reboot. # and may happen even after a reboot.
if c.PLATFORM == 'linux': if c.PLATFORM in ('linux', 'mac'):
c.base_paths['cache'] = ( c.base_paths['cache'] = (
'/', 'b', 'cache', 'chromium') '/', 'b', 'cache', 'chromium')
for path in ('builder_cache', 'git_cache', 'goma_cache', 'goma_deps_cache'): for path in ('builder_cache', 'git_cache', 'goma_cache', 'goma_deps_cache'):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment