Chromium Code Reviews| 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 from recipe_engine.post_process import Filter | |
| 6 | |
| 5 DEPS = [ | 7 DEPS = [ |
| 6 'archive', | 8 'archive', |
| 7 'chromium', | 9 'chromium', |
| 8 'depot_tools/gclient', | 10 'depot_tools/gclient', |
| 9 'recipe_engine/json', | 11 'recipe_engine/json', |
| 10 'recipe_engine/path', | 12 'recipe_engine/path', |
| 11 'recipe_engine/platform', | 13 'recipe_engine/platform', |
| 12 'recipe_engine/properties', | 14 'recipe_engine/properties', |
| 13 'recipe_engine/raw_io', | 15 'recipe_engine/raw_io', |
| 14 'recipe_engine/step', | 16 'recipe_engine/step', |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 114 ) + | 116 ) + |
| 115 api.step_data('bot_update', retcode=1) | 117 api.step_data('bot_update', retcode=1) |
| 116 ) | 118 ) |
| 117 | 119 |
| 118 yield ( | 120 yield ( |
| 119 api.v8.test( | 121 api.v8.test( |
| 120 'client.v8', | 122 'client.v8', |
| 121 'V8 Linux', | 123 'V8 Linux', |
| 122 'swarming_collect_failure', | 124 'swarming_collect_failure', |
| 123 ) + | 125 ) + |
| 124 api.step_data('Check', retcode=1) | 126 api.step_data('Check', retcode=1) + |
| 127 api.post_process(Filter('Check', 'Test262', '$result')) | |
| 125 ) | 128 ) |
|
tandrii(chromium)
2016/11/02 23:08:58
and that's it? wow!
| |
| 126 | 129 |
| 127 # Simulate a tryjob triggered by the CQ for setting up different swarming | 130 # Simulate a tryjob triggered by the CQ for setting up different swarming |
| 128 # default tags. | 131 # default tags. |
| 129 yield ( | 132 yield ( |
| 130 api.v8.test( | 133 api.v8.test( |
| 131 'tryserver.v8', | 134 'tryserver.v8', |
| 132 'v8_linux_rel_ng_triggered', | 135 'v8_linux_rel_ng_triggered', |
| 133 'triggered_by_cq', | 136 'triggered_by_cq', |
| 134 requester='commit-bot@chromium.org', | 137 requester='commit-bot@chromium.org', |
| 135 patch_project='v8', | 138 patch_project='v8', |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 403 ) + | 406 ) + |
| 404 api.override_step_data( | 407 api.override_step_data( |
| 405 'generate_build_files', api.raw_io.stream_output( | 408 'generate_build_files', api.raw_io.stream_output( |
| 406 'Writing """\\\n' | 409 'Writing """\\\n' |
| 407 'goma_dir = "/b/build/slave/cache/cipd/goma"\n' | 410 'goma_dir = "/b/build/slave/cache/cipd/goma"\n' |
| 408 'target_cpu = "x64"\n' | 411 'target_cpu = "x64"\n' |
| 409 'use_goma = true\n' | 412 'use_goma = true\n' |
| 410 '""" to /path/to/args.gn.\n' | 413 '""" to /path/to/args.gn.\n' |
| 411 'moar\n')) | 414 'moar\n')) |
| 412 ) | 415 ) |
| OLD | NEW |