Commit 027a5424 authored by Robert Iannucci's avatar Robert Iannucci Committed by Commit Bot

[infra_paths] remove unused goma_deps_cache.

R=dnj@chromium.org

Bug:
Change-Id: I69d2e75a7a6784a611f6e0128f1ba5617f009af2
Reviewed-on: https://chromium-review.googlesource.com/528320Reviewed-by: 's avatarDaniel Jacques <dnj@chromium.org>
Commit-Queue: Robbie Iannucci <iannucci@chromium.org>
parent ce325ac8
......@@ -3,7 +3,7 @@
"cmd": [],
"name": "show cache path",
"~followup_annotations": [
"@@@STEP_LOG_LINE@result@base_paths: {'builder_cache': ('/', 'b', 'c', 'b'), 'goma_deps_cache': ('/', 'b', 'c', 'goma_deps_cache'), 'cache': ('/', 'b', 'c'), 'goma_cache': ('/', 'b', 'c', 'goma_cache'), 'start_dir': ('/', 'b', 'FakeTestingCWD'), 'git_cache': ('/', 'b', 'c', 'git_cache'), 'root': ('/', 'b', 'FakeTestingCWD'), 'tmp_base': ('/',)}@@@",
"@@@STEP_LOG_LINE@result@base_paths: {'builder_cache': ('/', 'b', 'c', 'b'), 'cache': ('/', 'b', 'c'), 'goma_cache': ('/', 'b', 'c', 'goma_cache'), 'start_dir': ('/', 'b', 'FakeTestingCWD'), 'git_cache': ('/', 'b', 'c', 'git_cache'), 'root': ('/', 'b', 'FakeTestingCWD'), 'tmp_base': ('/',)}@@@",
"@@@STEP_LOG_LINE@result@default_git_cache_dir: Path('git_cache')@@@",
"@@@STEP_LOG_END@result@@@"
]
......
......@@ -3,7 +3,7 @@
"cmd": [],
"name": "show cache path",
"~followup_annotations": [
"@@@STEP_LOG_LINE@result@base_paths: {'builder_cache': ('/', 'b', 'c', 'b'), 'goma_deps_cache': ('/', 'b', 'c', 'goma_deps_cache'), 'cache': ('/', 'b', 'c'), 'goma_cache': ('/', 'b', 'c', 'goma_cache'), 'start_dir': ('/', 'b', 'FakeTestingCWD'), 'git_cache': ('/', 'b', 'c', 'git_cache'), 'root': ('/', 'b', 'FakeTestingCWD'), 'tmp_base': ('/',)}@@@",
"@@@STEP_LOG_LINE@result@base_paths: {'builder_cache': ('/', 'b', 'c', 'b'), 'cache': ('/', 'b', 'c'), 'goma_cache': ('/', 'b', 'c', 'goma_cache'), 'start_dir': ('/', 'b', 'FakeTestingCWD'), 'git_cache': ('/', 'b', 'c', 'git_cache'), 'root': ('/', 'b', 'FakeTestingCWD'), 'tmp_base': ('/',)}@@@",
"@@@STEP_LOG_LINE@result@default_git_cache_dir: Path('git_cache')@@@",
"@@@STEP_LOG_END@result@@@"
]
......
......@@ -3,7 +3,7 @@
"cmd": [],
"name": "show cache path",
"~followup_annotations": [
"@@@STEP_LOG_LINE@result@base_paths: {'builder_cache': ('/', 'b', 'c', 'b'), 'goma_deps_cache': ('/', 'b', 'c', 'goma_deps_cache'), 'cache': ('/', 'b', 'c'), 'goma_cache': ('/', 'b', 'c', 'goma_cache'), 'start_dir': ('/', 'b', 'FakeTestingCWD'), 'git_cache': ('/', 'b', 'c', 'git_cache'), 'root': ('/', 'b', 'FakeTestingCWD'), 'tmp_base': ('/',)}@@@",
"@@@STEP_LOG_LINE@result@base_paths: {'builder_cache': ('/', 'b', 'c', 'b'), 'cache': ('/', 'b', 'c'), 'goma_cache': ('/', 'b', 'c', 'goma_cache'), 'start_dir': ('/', 'b', 'FakeTestingCWD'), 'git_cache': ('/', 'b', 'c', 'git_cache'), 'root': ('/', 'b', 'FakeTestingCWD'), 'tmp_base': ('/',)}@@@",
"@@@STEP_LOG_LINE@result@default_git_cache_dir: Path('git_cache')@@@",
"@@@STEP_LOG_END@result@@@"
]
......
......@@ -36,18 +36,18 @@ def infra_kitchen(c):
if c.PLATFORM in ('linux', 'mac'):
c.base_paths['cache'] = ('/', 'b', 'c')
c.base_paths['builder_cache'] = c.base_paths['cache'] + ('b',)
for path in ('git_cache', 'goma_cache', 'goma_deps_cache'):
for path in ('git_cache', 'goma_cache'):
c.base_paths[path] = c.base_paths['cache'] + (path,)
elif b_dir:
c.base_paths['cache'] = b_dir + ('c',)
c.base_paths['builder_cache'] = c.base_paths['cache'] + ('b',)
for path in ('git_cache', 'goma_cache', 'goma_deps_cache'):
for path in ('git_cache', 'goma_cache'):
c.base_paths[path] = c.base_paths['cache'] + (path,)
else: # pragma: no cover
c.base_paths['cache'] = c.base_paths['root'] + ('c',)
c.base_paths['builder_cache'] = c.base_paths['cache'] + ('b',)
c.base_paths['git_cache'] = c.base_paths['root'] + ('cache_dir',)
for path in ('goma_cache', 'goma_deps_cache'):
for path in ('goma_cache',):
c.base_paths[path] = c.base_paths['cache'] + (path,)
......
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