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

Side by Side Diff: recipe_modules/bot_update/example.py

Issue 1954833002: Add bot_update_lite into recipes (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Remove expired args Created 4 years, 7 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 DEPS = [ 5 DEPS = [
6 'bot_update', 6 'bot_update',
7 'gclient', 7 'gclient',
8 'recipe_engine/path', 8 'recipe_engine/path',
9 'recipe_engine/properties', 9 'recipe_engine/properties',
10 ] 10 ]
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 47
48 48
49 def GenTests(api): 49 def GenTests(api):
50 yield api.test('basic') + api.properties( 50 yield api.test('basic') + api.properties(
51 mastername='chromium.linux', 51 mastername='chromium.linux',
52 buildername='Linux Builder', 52 buildername='Linux Builder',
53 slavename='totallyaslave-m1', 53 slavename='totallyaslave-m1',
54 patch=False, 54 patch=False,
55 revision='abc' 55 revision='abc'
56 ) 56 )
57 yield api.test('basic_lite') + api.properties(
58 mastername='chromium.linux',
59 buildername='Linux Builder',
60 slavename='totallyaslave-m1',
61 patch=False,
62 revision='abc',
63 lite=True
64 )
57 yield api.test('basic_with_branch_heads') + api.properties( 65 yield api.test('basic_with_branch_heads') + api.properties(
58 mastername='chromium.linux', 66 mastername='chromium.linux',
59 buildername='Linux Builder', 67 buildername='Linux Builder',
60 slavename='totallyaslave-m1', 68 slavename='totallyaslave-m1',
61 with_branch_heads=True, 69 with_branch_heads=True,
62 suffix='with branch heads' 70 suffix='with branch heads'
63 ) 71 )
64 yield api.test('basic_output_manifest') + api.properties( 72 yield api.test('basic_output_manifest') + api.properties(
65 mastername='chromium.linux', 73 mastername='chromium.linux',
66 buildername='Linux Builder', 74 buildername='Linux Builder',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 patch_url='http://src.chromium.org/foo/bar', 171 patch_url='http://src.chromium.org/foo/bar',
164 patch_project='v8', 172 patch_project='v8',
165 revisions={'src/v8': 'abc'} 173 revisions={'src/v8': 'abc'}
166 ) 174 )
167 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( 175 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver(
168 patch_project='v8', 176 patch_project='v8',
169 ) 177 )
170 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit( 178 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit(
171 full_project_name='angle/angle', 179 full_project_name='angle/angle',
172 ) 180 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698