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

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

Issue 581173004: Fix target arch for x86 bots. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 151
152 # Other waterfalls 152 # Other waterfalls
153 B('asan-builder-tests', H(compile_step, 153 B('asan-builder-tests', H(compile_step,
154 extra_gyp='asan=1 component=shared_library'), 154 extra_gyp='asan=1 component=shared_library'),
155 T(std_tests, ['--asan', '--asan-symbolize'])), 155 T(std_tests, ['--asan', '--asan-symbolize'])),
156 B('blink-try-builder', H(compile_step)), 156 B('blink-try-builder', H(compile_step)),
157 B('chromedriver-fyi-tests-dbg', H(std_test_steps), 157 B('chromedriver-fyi-tests-dbg', H(std_test_steps),
158 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe', 158 T(['chromedriver'], ['--install=ChromeShell', '--skip-wipe',
159 '--cleanup'])), 159 '--cleanup'])),
160 B('fyi-x86-builder-dbg', 160 B('fyi-x86-builder-dbg',
161 H(compile_step + std_host_tests, experimental, target_arch='x86')), 161 H(compile_step + std_host_tests, experimental, target_arch='ia32')),
162 B('fyi-builder-dbg', 162 B('fyi-builder-dbg',
163 H(std_build_steps + std_host_tests, experimental, 163 H(std_build_steps + std_host_tests, experimental,
164 extra_gyp='emma_coverage=1')), 164 extra_gyp='emma_coverage=1')),
165 B('x86-builder-dbg', 165 B('x86-builder-dbg',
166 H(compile_step + std_host_tests, target_arch='x86')), 166 H(compile_step + std_host_tests, target_arch='ia32')),
167 B('fyi-builder-rel', H(std_build_steps, experimental)), 167 B('fyi-builder-rel', H(std_build_steps, experimental)),
168 B('fyi-tests', H(std_test_steps), 168 B('fyi-tests', H(std_test_steps),
169 T(std_tests + chrome_sync_shell_tests, 169 T(std_tests + chrome_sync_shell_tests,
170 ['--experimental', flakiness_server, 170 ['--experimental', flakiness_server,
171 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET, 171 '--coverage-bucket', CHROMIUM_COVERAGE_BUCKET,
172 '--cleanup'])), 172 '--cleanup'])),
173 B('fyi-component-builder-tests-dbg', 173 B('fyi-component-builder-tests-dbg',
174 H(compile_step, extra_gyp='component=shared_library'), 174 H(compile_step, extra_gyp='component=shared_library'),
175 T(std_tests, ['--experimental', flakiness_server])), 175 T(std_tests, ['--experimental', flakiness_server])),
176 B('gpu-builder-tests-dbg', 176 B('gpu-builder-tests-dbg',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 for command in commands: 300 for command in commands:
301 print 'Will run: ', bb_utils.CommandToString(command) 301 print 'Will run: ', bb_utils.CommandToString(command)
302 print 302 print
303 303
304 env = GetEnvironment(bot_config.host_obj, options.testing) 304 env = GetEnvironment(bot_config.host_obj, options.testing)
305 return RunBotCommands(options, commands, env) 305 return RunBotCommands(options, commands, env)
306 306
307 307
308 if __name__ == '__main__': 308 if __name__ == '__main__':
309 sys.exit(main(sys.argv)) 309 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698