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

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

Issue 2284973002: Skia recipe: Use [depot_tools]/gsutil.py instead of [depot_tools]/third_party/gsutil/gsutil (Closed)
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..52e054ce77b3dedf636f9100547e0159cd2a3288 100644
--- a/scripts/slave/recipes/skia/swarm_trigger.py
+++ b/scripts/slave/recipes/skia/swarm_trigger.py
@@ -457,8 +457,7 @@ def perf_steps_collect(api, task, upload_perf_results, got_revision,
api.file.copy('perf_results', src_results_file, dst_results_file,
infra_step=True)
- gsutil_path = api.path['depot_tools'].join(
- 'third_party', 'gsutil', 'gsutil')
+ gsutil_path = api.path['depot_tools'].join('gsutil.py')
upload_args = [api.properties['buildername'], api.properties['buildnumber'],
perf_data_dir, got_revision, gsutil_path]
if is_trybot:
@@ -565,8 +564,7 @@ def upload_coverage_results(api, task, got_revision, is_trybot):
api.file.remove('old nanobench JSON', src_nano_file)
# Upload nanobench JSON data.
- gsutil_path = api.path['depot_tools'].join(
- 'third_party', 'gsutil', 'gsutil')
+ gsutil_path = api.path['depot_tools'].join('gsutil.py')
upload_args = [api.properties['buildername'], api.properties['buildnumber'],
results_dir, got_revision, gsutil_path]
if is_trybot:

Powered by Google App Engine
This is Rietveld 408576698