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

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

Issue 2282913002: Delete all references to GIT_MODE=True from build (Closed)
Patch Set: 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 | « scripts/slave/recipe_modules/pgo/api.py ('k') | scripts/slave/recipe_modules/skia/api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/recipe_tryjob/api.py
diff --git a/scripts/slave/recipe_modules/recipe_tryjob/api.py b/scripts/slave/recipe_modules/recipe_tryjob/api.py
index 40065835310eb7655171ee45aaca297ab3255ee5..165b0f34fdec6e4ab25fbfde7e86c05729fd147a 100644
--- a/scripts/slave/recipe_modules/recipe_tryjob/api.py
+++ b/scripts/slave/recipe_modules/recipe_tryjob/api.py
@@ -179,8 +179,7 @@ class RecipeTryjobApi(recipe_api.RecipeApi):
# Not working yet, but maybe??
#api.file.rmtree('clean old %s repo' % proj, checkout_path)
- config = self.m.gclient.make_config(
- GIT_MODE=True, CACHE_DIR=root_dir.join("__cache_dir"))
+ config = self.m.gclient.make_config(CACHE_DIR=root_dir.join("__cache_dir"))
soln = config.solutions.add()
soln.name = proj
soln.url = proj_config['repo_url']
@@ -267,7 +266,7 @@ class RecipeTryjobApi(recipe_api.RecipeApi):
root_dir = self.m.path['slave_build']
# Needed to set up the infra checkout, for _python
- self.m.gclient.set_config('infra', GIT_MODE=True)
+ self.m.gclient.set_config('infra')
self.m.gclient.c.solutions[0].revision = 'origin/master'
self.m.gclient.checkout()
self.m.gclient.runhooks()
« no previous file with comments | « scripts/slave/recipe_modules/pgo/api.py ('k') | scripts/slave/recipe_modules/skia/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698