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

Side by Side Diff: infra/bots/recipes/swarm_trigger.py

Issue 2242213007: Try to use bot_update in Skia repo recipes Base URL: https://skia.googlesource.com/skia@master
Patch Set: Update expectations 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 unified diff | Download patch
« no previous file with comments | « infra/bots/recipes/swarm_ct_skps.expected/CT_IMG_DECODE_10k_SKPs_Trybot.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 # Recipe module for Skia Swarming trigger. 6 # Recipe module for Skia Swarming trigger.
7 7
8 8
9 import os 9 import os
10 import json 10 import json
11 11
12 12
13 DEPS = [ 13 DEPS = [
14 'build/file', 14 'build/file',
15 'build/gsutil', 15 'build/gsutil',
16 'builder_name_schema', 16 'builder_name_schema',
17 'core', 17 'core',
18 'depot_tools/bot_update',
18 'depot_tools/depot_tools', 19 'depot_tools/depot_tools',
19 'depot_tools/git', 20 'depot_tools/git',
20 'depot_tools/tryserver',
21 'recipe_engine/json', 21 'recipe_engine/json',
22 'recipe_engine/path', 22 'recipe_engine/path',
23 'recipe_engine/properties', 23 'recipe_engine/properties',
24 'recipe_engine/python', 24 'recipe_engine/python',
25 'recipe_engine/raw_io', 25 'recipe_engine/raw_io',
26 'recipe_engine/step', 26 'recipe_engine/step',
27 'recipe_engine/time', 27 'recipe_engine/time',
28 'run', 28 'run',
29 'swarming', 29 'swarming',
30 'vars', 30 'vars',
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 test += api.path.exists(*paths) 766 test += api.path.exists(*paths)
767 767
768 return test 768 return test
769 769
770 770
771 def GenTests(api): 771 def GenTests(api):
772 for mastername, slaves in TEST_BUILDERS.iteritems(): 772 for mastername, slaves in TEST_BUILDERS.iteritems():
773 for slavename, builders_by_slave in slaves.iteritems(): 773 for slavename, builders_by_slave in slaves.iteritems():
774 for builder in builders_by_slave: 774 for builder in builders_by_slave:
775 yield test_for_bot(api, builder, mastername, slavename) 775 yield test_for_bot(api, builder, mastername, slavename)
OLDNEW
« no previous file with comments | « infra/bots/recipes/swarm_ct_skps.expected/CT_IMG_DECODE_10k_SKPs_Trybot.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698