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

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

Issue 2275643004: Make android recipes explicitly set GIT_MODE (Closed)
Patch Set: Catch dartium android builders Created 4 years, 4 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/recipe_modules/chromium_android/example.expected/basic_builder_basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium_android/api.py
diff --git a/scripts/slave/recipe_modules/chromium_android/api.py b/scripts/slave/recipe_modules/chromium_android/api.py
index 6ea8ed92d04b9ed430a0e32f76fc7dbe932c3880..07e7ac96966cd5f631fc997b6c37dfe26c2def1b 100644
--- a/scripts/slave/recipe_modules/chromium_android/api.py
+++ b/scripts/slave/recipe_modules/chromium_android/api.py
@@ -102,9 +102,10 @@ class AndroidApi(recipe_api.RecipeApi):
# TODO(sivachandra): Move the setting of the gclient spec below to an
# internal config extension when they are supported by the recipe system.
if use_git_cache:
- spec = self.m.gclient.make_config(gclient_config)
+ spec = self.m.gclient.make_config(gclient_config, GIT_MODE=True)
else:
- spec = self.m.gclient.make_config(gclient_config, CACHE_DIR=None)
+ spec = self.m.gclient.make_config(gclient_config,
+ CACHE_DIR=None, GIT_MODE=True)
spec.target_os = ['android']
s = spec.solutions[0]
s.name = self.c.deps_dir
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium_android/example.expected/basic_builder_basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698