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) |