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

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

Issue 2468373002: Recipes: Stop using tryserver_gerrit in depot_tools. (Closed)
Patch Set: Created 4 years, 1 month 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/tryserver/example.py » ('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/platform', 8 'recipe_engine/platform',
9 'recipe_engine/path', 9 'recipe_engine/path',
10 'recipe_engine/properties', 10 'recipe_engine/properties',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 revisions={'src/v8': 'abc'} 139 revisions={'src/v8': 'abc'}
140 ) 140 )
141 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( 141 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver(
142 patch_project='v8', 142 patch_project='v8',
143 ) 143 )
144 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver( 144 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver(
145 gerrit_project='angle/angle', 145 gerrit_project='angle/angle',
146 patch_issue=338811, 146 patch_issue=338811,
147 patch_set=3, 147 patch_set=3,
148 ) 148 )
149 yield (api.test('tryjob_gerrit_angle_deprecated') + 149 yield api.test('tryjob_gerrit_angle_deprecated') + api.properties.tryserver(
150 api.properties.tryserver_gerrit(full_project_name='angle/angle') 150 patch_project='angle/angle',
151 gerrit='https://chromium-review.googlesource.com',
152 patch_storage='gerrit',
153 repository='https://chromium.googlesource.com/angle/angle',
154 rietveld=None,
155 **{
156 'event.change.id': 'angle%2Fangle~master~Ideadbeaf',
157 'event.change.number': 338811,
158 'event.change.url':
159 'https://chromium-review.googlesource.com/#/c/338811',
160 'event.patchSet.ref': 'refs/changes/11/338811/3',
161 }
151 ) 162 )
OLDNEW
« no previous file with comments | « no previous file | recipe_modules/tryserver/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698