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 os | 10 import os |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 H(std_build_steps + std_host_tests, ['--experimental'])), | 135 H(std_build_steps + std_host_tests, ['--experimental'])), |
136 B('fyi-builder-rel', H(std_build_steps, ['--experimental'])), | 136 B('fyi-builder-rel', H(std_build_steps, ['--experimental'])), |
137 B('fyi-tests-dbg-ics-gn', H(compile_step, [ '--experimental']), | 137 B('fyi-tests-dbg-ics-gn', H(compile_step, [ '--experimental']), |
138 T(std_tests, ['--experimental', flakiness_server])), | 138 T(std_tests, ['--experimental', flakiness_server])), |
139 B('fyi-tests', H(std_test_steps), | 139 B('fyi-tests', H(std_test_steps), |
140 T(std_tests, ['--experimental', flakiness_server])), | 140 T(std_tests, ['--experimental', flakiness_server])), |
141 B('fyi-component-builder-tests-dbg', | 141 B('fyi-component-builder-tests-dbg', |
142 H(compile_step, extra_gyp='component=shared_library'), | 142 H(compile_step, extra_gyp='component=shared_library'), |
143 T(std_tests, ['--experimental', flakiness_server])), | 143 T(std_tests, ['--experimental', flakiness_server])), |
144 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])), | 144 B('perf-bisect-builder-tests-dbg', H(['bisect_perf_regression'])), |
145 B('perf-tests-rel', H(std_test_steps), T([], ['--install=ContentShell'])), | 145 B('perf-tests-rel', H(std_test_steps), |
| 146 T([], ['--install=ChromiumTestShell'])), |
146 B('webkit-latest-webkit-tests', H(std_test_steps), | 147 B('webkit-latest-webkit-tests', H(std_test_steps), |
147 T(['webkit_layout', 'webkit'])), | 148 T(['webkit_layout', 'webkit'])), |
148 B('webkit-latest-contentshell', H(compile_step), T(['webkit_layout'])), | 149 B('webkit-latest-contentshell', H(compile_step), T(['webkit_layout'])), |
149 B('builder-unit-tests', H(compile_step), T(['unit'])), | 150 B('builder-unit-tests', H(compile_step), T(['unit'])), |
150 | 151 |
151 # Generic builder config (for substring match). | 152 # Generic builder config (for substring match). |
152 B('builder', H(std_build_steps)), | 153 B('builder', H(std_build_steps)), |
153 ] | 154 ] |
154 | 155 |
155 bot_map = dict((config.bot_id, config) for config in bot_configs) | 156 bot_map = dict((config.bot_id, config) for config in bot_configs) |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 sys.stdout.flush() | 226 sys.stdout.flush() |
226 if options.testing: | 227 if options.testing: |
227 env['BUILDBOT_TESTING'] = '1' | 228 env['BUILDBOT_TESTING'] = '1' |
228 return_code = subprocess.call(command, cwd=bb_utils.CHROME_SRC, env=env) | 229 return_code = subprocess.call(command, cwd=bb_utils.CHROME_SRC, env=env) |
229 if return_code != 0: | 230 if return_code != 0: |
230 return return_code | 231 return return_code |
231 | 232 |
232 | 233 |
233 if __name__ == '__main__': | 234 if __name__ == '__main__': |
234 sys.exit(main(sys.argv)) | 235 sys.exit(main(sys.argv)) |
OLD | NEW |