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

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: Created 7 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 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 89b272f7c3836f54638072b74cec02598fe9db80..8c3ddb8391285415e1094300532b3812567e0b78 100755
--- a/build/android/buildbot/bb_run_bot.py
+++ b/build/android/buildbot/bb_run_bot.py
@@ -41,7 +41,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
@@ -131,6 +131,8 @@ def GetBotStepMap():
T(std_tests, ['--asan'])),
B('chromedriver-fyi-tests-dbg', H(std_test_steps),
T(['chromedriver'], ['--install=ChromiumTestShell'])),
+ B('x86-builder-dbg',
+ H(std_build_steps + std_host_tests, target_arch='x86')),
Isaac (away) 2013/06/27 10:21:59 See comments in other CL -- unless there's a lot o
Siva Chandra 2013/06/27 18:53:17 I have compile_step instead of std_build_steps now
B('fyi-builder-dbg',
H(std_build_steps + std_host_tests, ['--experimental'])),
B('fyi-builder-rel', H(std_build_steps, ['--experimental'])),
« 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