OLD | NEW |
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 Loading... |
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 ) |
OLD | NEW |