| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # | 2 # |
| 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 import collections | 7 import collections |
| 8 import copy | 8 import copy |
| 9 import json | 9 import json |
| 10 import optparse | 10 import optparse |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 B('chromedriver-fyi-tests-dbg', std_test_steps, T(['chromedriver']), | 107 B('chromedriver-fyi-tests-dbg', std_test_steps, T(['chromedriver']), |
| 108 None), | 108 None), |
| 109 B('fyi-builder-dbg', | 109 B('fyi-builder-dbg', |
| 110 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', | 110 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', |
| 111 'bb_run_findbugs', 'bb_zip_build'], None, None), | 111 'bb_run_findbugs', 'bb_zip_build'], None, None), |
| 112 B('fyi-builder-rel', | 112 B('fyi-builder-rel', |
| 113 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), | 113 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), |
| 114 B('fyi-tests', std_test_steps, | 114 B('fyi-tests', std_test_steps, |
| 115 T(std_tests, ['--experimental', flakiness_server]), None), | 115 T(std_tests, ['--experimental', flakiness_server]), None), |
| 116 B('perf-tests-rel', std_test_steps, | 116 B('perf-tests-rel', std_test_steps, |
| 117 T([], ['--install=ContentShell', '--auto-reconnect']), | 117 T([], ['--install=ContentShell']), |
| 118 None), | 118 None), |
| 119 B('webkit-latest-webkit-tests', std_test_steps, | 119 B('webkit-latest-webkit-tests', std_test_steps, |
| 120 T(['webkit_layout', 'webkit']), None), | 120 T(['webkit_layout', 'webkit']), None), |
| 121 B('webkit-latest-contentshell', compile_step, T(['webkit_layout']), None), | 121 B('webkit-latest-contentshell', compile_step, T(['webkit_layout']), None), |
| 122 | 122 |
| 123 # Generic builder config (for substring match). | 123 # Generic builder config (for substring match). |
| 124 B('builder', std_build_steps, None, None), | 124 B('builder', std_build_steps, None, None), |
| 125 ] | 125 ] |
| 126 | 126 |
| 127 bot_map = dict((config.bot_id, config) for config in bot_configs) | 127 bot_map = dict((config.bot_id, config) for config in bot_configs) |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 cwd=CHROME_SRC, | 215 cwd=CHROME_SRC, |
| 216 env=dict(os.environ, BUILDBOT_TESTING='1')) | 216 env=dict(os.environ, BUILDBOT_TESTING='1')) |
| 217 else: | 217 else: |
| 218 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) | 218 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) |
| 219 if return_code != 0: | 219 if return_code != 0: |
| 220 return return_code | 220 return return_code |
| 221 | 221 |
| 222 | 222 |
| 223 if __name__ == '__main__': | 223 if __name__ == '__main__': |
| 224 sys.exit(main(sys.argv)) | 224 sys.exit(main(sys.argv)) |
| OLD | NEW |