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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
108 B('fyi-builder-dbg', | 108 B('fyi-builder-dbg', |
109 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', | 109 ['bb_check_webview_licenses', 'bb_compile', 'bb_compile_experimental', |
110 'bb_run_findbugs', 'bb_zip_build'], None, None), | 110 'bb_run_findbugs', 'bb_zip_build'], None, None), |
111 B('fyi-builder-rel', | 111 B('fyi-builder-rel', |
112 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), | 112 ['bb_compile', 'bb_compile_experimental', 'bb_zip_build'], None, None), |
113 B('fyi-tests', std_test_steps, | 113 B('fyi-tests', std_test_steps, |
114 T(std_tests, ['--experimental', flakiness_server]), None), | 114 T(std_tests, ['--experimental', flakiness_server]), None), |
115 B('fyi-component-builder-tests-dbg', compile_step, | 115 B('fyi-component-builder-tests-dbg', compile_step, |
116 T(std_tests, ['--experimental', flakiness_server]), None), | 116 T(std_tests, ['--experimental', flakiness_server]), None), |
117 B('perf-tests-rel', std_test_steps, | 117 B('perf-tests-rel', std_test_steps, |
118 T([], ['--install=ContentShell']), | 118 T([], ['--install=ChromiumTestShell']), |
tonyg
2013/05/20 16:26:17
Ilevy should review, but I'm not sure whether this
bulach
2013/05/21 07:45:46
yeah, I'm not sure either, there are so. many. lay
Isaac (away)
2013/06/15 07:35:03
Yes, this is correct.
| |
119 None), | 119 None), |
120 B('webkit-latest-webkit-tests', std_test_steps, | 120 B('webkit-latest-webkit-tests', std_test_steps, |
121 T(['webkit_layout', 'webkit']), None), | 121 T(['webkit_layout', 'webkit']), None), |
122 B('webkit-latest-contentshell', compile_step, T(['webkit_layout']), None), | 122 B('webkit-latest-contentshell', compile_step, T(['webkit_layout']), None), |
123 | 123 |
124 # Generic builder config (for substring match). | 124 # Generic builder config (for substring match). |
125 B('builder', std_build_steps, None, None), | 125 B('builder', std_build_steps, None, None), |
126 ] | 126 ] |
127 | 127 |
128 bot_map = dict((config.bot_id, config) for config in bot_configs) | 128 bot_map = dict((config.bot_id, config) for config in bot_configs) |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
217 cwd=CHROME_SRC, | 217 cwd=CHROME_SRC, |
218 env=dict(os.environ, BUILDBOT_TESTING='1')) | 218 env=dict(os.environ, BUILDBOT_TESTING='1')) |
219 else: | 219 else: |
220 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) | 220 return_code = subprocess.call(command, cwd=CHROME_SRC, env=env) |
221 if return_code != 0: | 221 if return_code != 0: |
222 return return_code | 222 return return_code |
223 | 223 |
224 | 224 |
225 if __name__ == '__main__': | 225 if __name__ == '__main__': |
226 sys.exit(main(sys.argv)) | 226 sys.exit(main(sys.argv)) |
OLD | NEW |