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

Unified Diff: scripts/slave/recipes/skia/swarm_trigger.py

Issue 2270963002: Make skia recipes explicitly set GIT_MODE (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase 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
Index: scripts/slave/recipes/skia/swarm_trigger.py
diff --git a/scripts/slave/recipes/skia/swarm_trigger.py b/scripts/slave/recipes/skia/swarm_trigger.py
index f3c1b5f0c86534ac7150ac1555f4601d6f5b2442..a34c12d8a3f0aa8fa29f26ce69ae36e821094a56 100644
--- a/scripts/slave/recipes/skia/swarm_trigger.py
+++ b/scripts/slave/recipes/skia/swarm_trigger.py
@@ -243,7 +243,7 @@ def trigger_task(api, task_name, builder, master, slave, buildnumber,
def checkout_steps(api):
"""Run the steps to obtain a checkout of Skia."""
- gclient_cfg = api.gclient.make_config(CACHE_DIR=None)
+ gclient_cfg = api.gclient.make_config(CACHE_DIR=None, GIT_MODE=True)
repo = gclient_cfg.solutions.add()
repo.managed = False
repo.revision = api.properties.get('revision') or 'origin/master'

Powered by Google App Engine
This is Rietveld 408576698