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