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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 ['--cleanup', flakiness_server])), | 151 ['--cleanup', flakiness_server])), |
152 B('main-tests', H(std_test_steps), | 152 B('main-tests', H(std_test_steps), |
153 T(std_tests, ['--cleanup', flakiness_server])), | 153 T(std_tests, ['--cleanup', flakiness_server])), |
154 | 154 |
155 # Other waterfalls | 155 # Other waterfalls |
156 B('asan-builder-tests', H(compile_step, | 156 B('asan-builder-tests', H(compile_step, |
157 extra_gyp='asan=1 component=shared_library'), | 157 extra_gyp='asan=1 component=shared_library'), |
158 T(std_tests, ['--asan', '--asan-symbolize'])), | 158 T(std_tests, ['--asan', '--asan-symbolize'])), |
159 B('blink-try-builder', H(compile_step)), | 159 B('blink-try-builder', H(compile_step)), |
160 B('chromedriver-fyi-tests-dbg', H(std_test_steps), | 160 B('chromedriver-fyi-tests-dbg', H(std_test_steps), |
161 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe', | 161 T(['chromedriver'], |
162 '--cleanup'])), | 162 ['--install=ChromeShell', '--install=ChromeDriverWebViewShell', |
| 163 '--skip-wipe', '--cleanup'])), |
163 B('fyi-x86-builder-dbg', | 164 B('fyi-x86-builder-dbg', |
164 H(compile_step + std_host_tests, experimental, target_arch='ia32')), | 165 H(compile_step + std_host_tests, experimental, target_arch='ia32')), |
165 B('fyi-builder-dbg', | 166 B('fyi-builder-dbg', |
166 H(std_build_steps + emma_coverage_tests, experimental, | 167 H(std_build_steps + emma_coverage_tests, experimental, |
167 extra_gyp='emma_coverage=1')), | 168 extra_gyp='emma_coverage=1')), |
168 B('x86-builder-dbg', | 169 B('x86-builder-dbg', |
169 H(compile_step + std_host_tests, target_arch='ia32')), | 170 H(compile_step + std_host_tests, target_arch='ia32')), |
170 B('fyi-builder-rel', H(std_build_steps, experimental)), | 171 B('fyi-builder-rel', H(std_build_steps, experimental)), |
171 B('fyi-tests', H(std_test_steps), | 172 B('fyi-tests', H(std_test_steps), |
172 T(std_tests + python_unittests, | 173 T(std_tests + python_unittests, |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 for command in commands: | 306 for command in commands: |
306 print 'Will run: ', bb_utils.CommandToString(command) | 307 print 'Will run: ', bb_utils.CommandToString(command) |
307 print | 308 print |
308 | 309 |
309 env = GetEnvironment(bot_config.host_obj, options.testing) | 310 env = GetEnvironment(bot_config.host_obj, options.testing) |
310 return RunBotCommands(options, commands, env) | 311 return RunBotCommands(options, commands, env) |
311 | 312 |
312 | 313 |
313 if __name__ == '__main__': | 314 if __name__ == '__main__': |
314 sys.exit(main(sys.argv)) | 315 sys.exit(main(sys.argv)) |
OLD | NEW |