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

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

Issue 2311673002: Just disable force to ensure that bot_update really is running everywhere. (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | recipe_modules/bot_update/example.expected/clobber.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 buildername='Experimental Builder', 129 buildername='Experimental Builder',
130 slavename='somehost', 130 slavename='somehost',
131 force=1 131 force=1
132 ) 132 )
133 yield api.test('no_shallow') + api.properties( 133 yield api.test('no_shallow') + api.properties(
134 mastername='experimental', 134 mastername='experimental',
135 buildername='Experimental Builder', 135 buildername='Experimental Builder',
136 slavename='somehost', 136 slavename='somehost',
137 no_shallow=1 137 no_shallow=1
138 ) 138 )
139 yield api.test('off') + api.properties(
140 mastername='experimental',
141 buildername='Experimental Builder',
142 slavename='somehost',
143 )
144 yield api.test('clobber') + api.properties( 139 yield api.test('clobber') + api.properties(
145 mastername='experimental', 140 mastername='experimental',
146 buildername='Experimental Builder', 141 buildername='Experimental Builder',
147 slavename='somehost', 142 slavename='somehost',
148 clobber=1 143 clobber=1
149 ) 144 )
150 yield api.test('reset_root_solution_revision') + api.properties( 145 yield api.test('reset_root_solution_revision') + api.properties(
151 mastername='experimental', 146 mastername='experimental',
152 buildername='Experimental Builder', 147 buildername='Experimental Builder',
153 slavename='somehost', 148 slavename='somehost',
(...skipping 26 matching lines...) Expand all
180 patch_url='http://src.chromium.org/foo/bar', 175 patch_url='http://src.chromium.org/foo/bar',
181 patch_project='v8', 176 patch_project='v8',
182 revisions={'src/v8': 'abc'} 177 revisions={'src/v8': 'abc'}
183 ) 178 )
184 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( 179 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver(
185 patch_project='v8', 180 patch_project='v8',
186 ) 181 )
187 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit( 182 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit(
188 full_project_name='angle/angle', 183 full_project_name='angle/angle',
189 ) 184 )
OLDNEW
« no previous file with comments | « no previous file | recipe_modules/bot_update/example.expected/clobber.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698