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

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

Issue 1686273002: Bot update cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 4 years, 10 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 | Annotate | Revision Log
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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 ) + api.step_data('bot_update', retcode=87) 110 ) + api.step_data('bot_update', retcode=87)
111 yield api.test('forced') + api.properties( 111 yield api.test('forced') + api.properties(
112 mastername='experimental', 112 mastername='experimental',
113 buildername='Experimental Builder', 113 buildername='Experimental Builder',
114 slavename='somehost', 114 slavename='somehost',
115 force=1 115 force=1
116 ) 116 )
117 yield api.test('no_shallow') + api.properties( 117 yield api.test('no_shallow') + api.properties(
118 mastername='experimental', 118 mastername='experimental',
119 buildername='Experimental Builder', 119 buildername='Experimental Builder',
120 slavename='somehost', 120 slavename='somehost',
iannucci 2016/02/11 00:56:20 nothing should need these {master,builder,slave}na
hinoka 2016/02/11 20:10:05 Done.
121 no_shallow=1 121 no_shallow=1
122 ) 122 )
123 yield api.test('off') + api.properties(
124 mastername='experimental',
125 buildername='Experimental Builder',
126 slavename='somehost',
127 )
128 yield api.test('svn_mode') + api.properties(
129 mastername='experimental.svn',
130 buildername='Experimental SVN Builder',
131 slavename='somehost',
132 force=1
133 )
134 yield api.test('clobber') + api.properties( 123 yield api.test('clobber') + api.properties(
135 mastername='experimental', 124 mastername='experimental',
136 buildername='Experimental Builder', 125 buildername='Experimental Builder',
137 slavename='somehost', 126 slavename='somehost',
138 clobber=1 127 clobber=1
139 ) 128 )
140 yield api.test('reset_root_solution_revision') + api.properties( 129 yield api.test('reset_root_solution_revision') + api.properties(
141 mastername='experimental', 130 mastername='experimental',
142 buildername='Experimental Builder', 131 buildername='Experimental Builder',
143 slavename='somehost', 132 slavename='somehost',
144 root_solution_revision='revision', 133 root_solution_revision='revision',
145 ) 134 )
146 yield api.test('tryjob_v8') + api.properties( 135 yield api.test('tryjob_v8') + api.properties(
147 mastername='tryserver.chromium.linux', 136 mastername='tryserver.chromium.linux',
148 buildername='linux_rel', 137 buildername='linux_rel',
149 slavename='totallyaslave-c4', 138 slavename='totallyaslave-c4',
150 issue=12345, 139 issue=12345,
151 patchset=654321, 140 patchset=654321,
152 patch_url='http://src.chromium.org/foo/bar', 141 patch_url='http://src.chromium.org/foo/bar',
153 patch_project='v8', 142 patch_project='v8',
154 revisions={'src/v8': 'abc'} 143 revisions={'src/v8': 'abc'}
155 ) 144 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698