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

Unified Diff: recipe_engine/autoroll.py

Issue 2801273002: Disable bootstrap for recipes.py invocations in autoroll (Closed)
Patch Set: Created 3 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/autoroll.py
diff --git a/recipe_engine/autoroll.py b/recipe_engine/autoroll.py
index 448c91efc109a97de939012b5167e35ff7167f31..8cb70106a7c56db17fbc178761c6ec0545285349 100644
--- a/recipe_engine/autoroll.py
+++ b/recipe_engine/autoroll.py
@@ -108,6 +108,8 @@ def fetch(repo_root, package_spec):
args = [
sys.executable,
os.path.join(repo_root, package_spec.recipes_path, 'recipes.py'),
+ # Invoked recipes.py should not re-bootstrap (to avoid issues on bots).
+ '--disable-bootstrap',
'fetch',
]
subprocess.check_call(args)
@@ -126,6 +128,8 @@ def run_simulation_test(repo_root, package_spec, additional_args=None,
args = [
sys.executable,
os.path.join(repo_root, package_spec.recipes_path, 'recipes.py'),
+ # Invoked recipes.py should not re-bootstrap (to avoid issues on bots).
+ '--disable-bootstrap',
]
if not allow_fetch:
args.append('--no-fetch')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698