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

Unified Diff: build/android/buildbot/bb_run_bot.py

Issue 17746004: [Android] Add bot id for an x86 fyi and try builders (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Last nit Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/bb_run_bot.py
diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py
index 72bda44422bb8eb37cfa0b0d02b259d184d5191b..57c60864e7fb77bd495260cda4d15e08ffa81efb 100755
--- a/build/android/buildbot/bb_run_bot.py
+++ b/build/android/buildbot/bb_run_bot.py
@@ -45,7 +45,7 @@ def GetEnvironment(host_obj, testing):
init_env['GOMA_DIR'] = bb_utils.GOMA_DIR
envsetup_cmd = '. build/android/envsetup.sh'
if host_obj.target_arch:
- envsetup_cmd += ' --target_arch=%s' % host_obj.target_arch
+ envsetup_cmd += ' --target-arch=%s' % host_obj.target_arch
if testing:
# Skip envsetup to avoid presubmit dependence on android deps.
print 'Testing mode - skipping "%s"' % envsetup_cmd
@@ -112,6 +112,7 @@ def GetBotStepMap():
std_test_steps = ['extract_build']
std_tests = ['ui', 'unit']
flakiness_server = '--upload-to-flakiness-server'
+ experimental = ['--experimental']
B = BotConfig
H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None :
@@ -135,11 +136,13 @@ def GetBotStepMap():
T(std_tests, ['--asan'])),
B('chromedriver-fyi-tests-dbg', H(std_test_steps),
T(['chromedriver'], ['--install=ChromiumTestShell'])),
+ B('fyi-x86-builder-dbg',
+ H(compile_step + std_host_tests, experimental, target_arch='x86')),
B('fyi-builder-dbg',
- H(std_build_steps + std_host_tests, ['--experimental'])),
- B('fyi-builder-rel', H(std_build_steps, ['--experimental'])),
- B('fyi-tests-dbg-ics-gn', H(compile_step, [ '--experimental']),
- T(std_tests, ['--experimental', flakiness_server])),
+ H(std_build_steps + std_host_tests, experimental)),
+ B('x86-builder-dbg',
+ H(compile_step + std_host_tests, target_arch='x86')),
+ B('fyi-builder-rel', H(std_build_steps, experimental)),
B('fyi-tests', H(std_test_steps),
T(std_tests, ['--experimental', flakiness_server])),
B('fyi-component-builder-tests-dbg',
@@ -166,6 +169,7 @@ def GetBotStepMap():
('try-builder-rel', 'main-builder-rel'),
('try-clang-builder', 'main-clang-builder'),
('try-fyi-builder-dbg', 'fyi-builder-dbg'),
+ ('try-x86-builder-dbg', 'x86-builder-dbg'),
('try-tests', 'main-tests'),
('try-fyi-tests', 'fyi-tests'),
('webkit-latest-tests', 'main-tests'),
« 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