Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: scripts/slave/recipe_modules/chromium_tests/api.py

Issue 2100153002: chromium_tests: remove unnecessary path component from cache checkout path (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/kitchen_path_config.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_tests/api.py
diff --git a/scripts/slave/recipe_modules/chromium_tests/api.py b/scripts/slave/recipe_modules/chromium_tests/api.py
index 86377981fc401570e48f3c8f40cca7a2213550eb..4fa44f2ce533601fe503345ff7a2e49eae20635b 100644
--- a/scripts/slave/recipe_modules/chromium_tests/api.py
+++ b/scripts/slave/recipe_modules/chromium_tests/api.py
@@ -163,7 +163,7 @@ class ChromiumTestsApi(recipe_api.RecipeApi):
sanitized_buildername = ''.join(
c if c.isalnum() else '_' for c in self.m.properties['buildername'])
checkout_path = builder_cache.join(
- 'checkouts', sanitized_buildername)
+ bot_config.get('checkout_dir', sanitized_buildername))
self.m.shutil.makedirs('checkout path', checkout_path)
kwargs['cwd'] = checkout_path
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/kitchen_path_config.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698