| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'archive', | 6 'archive', |
| 7 'chromium', | 7 'chromium', |
| 8 'depot_tools/gclient', | 8 'depot_tools/gclient', |
| 9 'recipe_engine/json', | 9 'recipe_engine/json', |
| 10 'recipe_engine/path', | 10 'recipe_engine/path', |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 108 |
| 109 yield ( | 109 yield ( |
| 110 api.v8.test( | 110 api.v8.test( |
| 111 'client.v8.branches', | 111 'client.v8.branches', |
| 112 'V8 Linux - beta branch', | 112 'V8 Linux - beta branch', |
| 113 'branch_sync_failure', | 113 'branch_sync_failure', |
| 114 ) + | 114 ) + |
| 115 api.step_data('bot_update', retcode=1) | 115 api.step_data('bot_update', retcode=1) |
| 116 ) | 116 ) |
| 117 | 117 |
| 118 yield ( |
| 119 api.v8.test( |
| 120 'client.v8', |
| 121 'V8 Linux', |
| 122 'swarming_collect_failure', |
| 123 ) + |
| 124 api.step_data('Check', retcode=1) |
| 125 ) |
| 126 |
| 118 # Simulate a tryjob triggered by the CQ for setting up different swarming | 127 # Simulate a tryjob triggered by the CQ for setting up different swarming |
| 119 # default tags. | 128 # default tags. |
| 120 yield ( | 129 yield ( |
| 121 api.v8.test( | 130 api.v8.test( |
| 122 'tryserver.v8', | 131 'tryserver.v8', |
| 123 'v8_linux_rel_ng_triggered', | 132 'v8_linux_rel_ng_triggered', |
| 124 'triggered_by_cq', | 133 'triggered_by_cq', |
| 125 requester='commit-bot@chromium.org', | 134 requester='commit-bot@chromium.org', |
| 126 patch_project='v8', | 135 patch_project='v8', |
| 127 blamelist=['dude@chromium.org'], | 136 blamelist=['dude@chromium.org'], |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 ) + | 403 ) + |
| 395 api.override_step_data( | 404 api.override_step_data( |
| 396 'generate_build_files', api.raw_io.stream_output( | 405 'generate_build_files', api.raw_io.stream_output( |
| 397 'Writing """\\\n' | 406 'Writing """\\\n' |
| 398 'goma_dir = "/b/build/slave/cache/cipd/goma"\n' | 407 'goma_dir = "/b/build/slave/cache/cipd/goma"\n' |
| 399 'target_cpu = "x64"\n' | 408 'target_cpu = "x64"\n' |
| 400 'use_goma = true\n' | 409 'use_goma = true\n' |
| 401 '""" to /path/to/args.gn.\n' | 410 '""" to /path/to/args.gn.\n' |
| 402 'moar\n')) | 411 'moar\n')) |
| 403 ) | 412 ) |
| OLD | NEW |