Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: build/android/buildbot/bb_run_bot.py

Issue 332093003: ChromeDriver has pre-installed APK's, thus should not wipe during provisioning. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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))
OLDNEW
« no previous file with comments | « build/android/buildbot/bb_device_steps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698