| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'depot_tools/bot_update', | 6 'depot_tools/bot_update', |
| 7 'depot_tools/gclient', | 7 'depot_tools/gclient', |
| 8 'depot_tools/git', | 8 'depot_tools/git', |
| 9 'depot_tools/presubmit', | 9 'depot_tools/presubmit', |
| 10 'recipe_engine/json', | 10 'recipe_engine/json', |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 full_project_name='infra/infra', | 188 full_project_name='infra/infra', |
| 189 repo_name='infra', | 189 repo_name='infra', |
| 190 mastername='tryserver.infra', | 190 mastername='tryserver.infra', |
| 191 buildername='infra_presubmit', | 191 buildername='infra_presubmit', |
| 192 runhooks=True) + | 192 runhooks=True) + |
| 193 api.step_data('presubmit', api.json.output([['infra_presubmit', | 193 api.step_data('presubmit', api.json.output([['infra_presubmit', |
| 194 ['compile']]])) | 194 ['compile']]])) |
| 195 ) | 195 ) |
| 196 | 196 |
| 197 yield ( | 197 yield ( |
| 198 api.test('depot_tools_and_gerrit') + |
| 199 api.properties.tryserver_gerrit( |
| 200 full_project_name='chromium/tools/depot_tools', |
| 201 repo_name='depot_tools', |
| 202 mastername='tryserver.infra', |
| 203 buildername='presubmit_depot_tools', |
| 204 runhooks=True) + |
| 205 api.step_data('presubmit', api.json.output([['depot_tools_presubmit', |
| 206 ['test']]])) |
| 207 ) |
| 208 |
| 209 yield ( |
| 198 api.test('recipes-py') + | 210 api.test('recipes-py') + |
| 199 api.properties.tryserver( | 211 api.properties.tryserver( |
| 200 mastername='tryserver.infra', | 212 mastername='tryserver.infra', |
| 201 buildername='infra_presubmit', | 213 buildername='infra_presubmit', |
| 202 repo_name='recipes_py', | 214 repo_name='recipes_py', |
| 203 patch_project='recipes-py', | 215 patch_project='recipes-py', |
| 204 runhooks=True) + | 216 runhooks=True) + |
| 205 api.step_data('presubmit', api.json.output([['infra_presubmit', | 217 api.step_data('presubmit', api.json.output([['infra_presubmit', |
| 206 ['compile']]])) | 218 ['compile']]])) |
| 207 ) | 219 ) |
| (...skipping 10 matching lines...) Expand all Loading... |
| 218 | 230 |
| 219 yield ( | 231 yield ( |
| 220 api.test('presubmit-infra-failure') + | 232 api.test('presubmit-infra-failure') + |
| 221 api.properties.tryserver( | 233 api.properties.tryserver( |
| 222 mastername='tryserver.chromium.linux', | 234 mastername='tryserver.chromium.linux', |
| 223 buildername='chromium_presubmit', | 235 buildername='chromium_presubmit', |
| 224 repo_name='chromium', | 236 repo_name='chromium', |
| 225 patch_project='chromium') + | 237 patch_project='chromium') + |
| 226 api.step_data('presubmit', api.json.output({}, retcode=2)) | 238 api.step_data('presubmit', api.json.output({}, retcode=2)) |
| 227 ) | 239 ) |
| OLD | NEW |