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

Unified Diff: infra/bots/recipes/swarm_trigger.py

Issue 2231943002: Use SVGs CIPD package and use SVG as a DM source (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Fix test 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: infra/bots/recipes/swarm_trigger.py
diff --git a/infra/bots/recipes/swarm_trigger.py b/infra/bots/recipes/swarm_trigger.py
index 17d2d697ec884b7c4c04206af4cc0713f531b6e7..6d648e70fc4f59a0be842e386ecef17e9da37aa6 100644
--- a/infra/bots/recipes/swarm_trigger.py
+++ b/infra/bots/recipes/swarm_trigger.py
@@ -679,9 +679,10 @@ def RunSteps(api):
if not (do_test_steps or do_perf_steps):
return
- # SKPs, SkImages.
+ # SKPs, SkImages, SVGs.
cipd_packages.append(cipd_pkg(api, infrabots_dir, 'skp'))
cipd_packages.append(cipd_pkg(api, infrabots_dir, 'skimage'))
+ cipd_packages.append(cipd_pkg(api, infrabots_dir, 'svg'))
borenet 2016/08/11 16:20:53 Limit this to only the bots which will use the SVG
rmistry 2016/08/11 16:41:48 Done.
# Trigger test and perf tasks.
test_task = None
@@ -749,6 +750,8 @@ def test_for_bot(api, builder, mastername, slavename, testname=None):
'skia', 'infra', 'bots', 'assets', 'skimage', 'VERSION'))
paths.append(api.path['slave_build'].join(
'skia', 'infra', 'bots', 'assets', 'skp', 'VERSION'))
+ paths.append(api.path['slave_build'].join(
+ 'skia', 'infra', 'bots', 'assets', 'svg', 'VERSION'))
test += api.path.exists(*paths)

Powered by Google App Engine
This is Rietveld 408576698