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

Side by Side Diff: scripts/slave/recipes/boringssl.py

Issue 2463653002: Stop supporting old Gerrit CQ tryjob properties. (Closed)
Patch Set: review 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 | scripts/slave/recipes/boringssl.expected/gerrit_cl_deprecated.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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 from recipe_engine.recipe_api import Property 5 from recipe_engine.recipe_api import Property
6 6
7 DEPS = [ 7 DEPS = [
8 'chromium', 8 'chromium',
9 'depot_tools/bot_update', 9 'depot_tools/bot_update',
10 'depot_tools/depot_tools', 10 'depot_tools/depot_tools',
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 api.platform('linux', 64) + 276 api.platform('linux', 64) +
277 api.properties.generic(mastername='client.boringssl', buildername='linux', 277 api.properties.generic(mastername='client.boringssl', buildername='linux',
278 slavename='slavename') + 278 slavename='slavename') +
279 api.override_step_data('unit tests', 279 api.override_step_data('unit tests',
280 api.test_utils.canned_test_output(True)) + 280 api.test_utils.canned_test_output(True)) +
281 api.override_step_data('ssl tests', 281 api.override_step_data('ssl tests',
282 api.test_utils.canned_test_output(False)) 282 api.test_utils.canned_test_output(False))
283 ) 283 )
284 284
285 yield ( 285 yield (
286 api.test('gerrit_cl_deprecated') +
287 api.platform('linux', 64) +
288 api.properties.tryserver_gerrit(
289 gerrit_host='boringssl-review.googlesource.com',
290 full_project_name='boringssl',
291 mastername='actually-no-master', buildername='linux',
292 slavename='swarming-slave')
293 )
294 yield (
295 api.test('gerrit_cl') + 286 api.test('gerrit_cl') +
296 api.platform('linux', 64) + 287 api.platform('linux', 64) +
297 api.properties.tryserver( 288 api.properties.tryserver(
298 gerrit_project='boringssl', 289 gerrit_project='boringssl',
299 gerrit_url='https://boringssl-review.googlesource.com', 290 gerrit_url='https://boringssl-review.googlesource.com',
300 mastername='actually-no-master', buildername='linux', 291 mastername='actually-no-master', buildername='linux',
301 slavename='swarming-slave') 292 slavename='swarming-slave')
302 ) 293 )
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/boringssl.expected/gerrit_cl_deprecated.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698