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

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

Issue 72273003: [Android] Upstream android lint script and run it on debug builders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move std_host_tests to clank builder Created 7 years, 1 month 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 | « build/android/buildbot/bb_host_steps.py ('k') | build/android/lint.py » ('j') | 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 c729ca2d5f87a0ab5243b24b3ea8b6533ae200a0..03a1d3855036d13c61b9af43e60ffda335dffdb4 100755
--- a/build/android/buildbot/bb_run_bot.py
+++ b/build/android/buildbot/bb_run_bot.py
@@ -115,7 +115,7 @@ def GetCommands(options, bot_config):
def GetBotStepMap():
compile_step = ['compile']
- std_host_tests = ['check_webview_licenses', 'findbugs']
+ std_host_tests = ['check_webview_licenses', 'findbugs', 'lint']
std_build_steps = ['compile', 'zip_build']
std_test_steps = ['extract_build']
std_tests = ['ui', 'unit']
@@ -133,10 +133,11 @@ def GetBotStepMap():
bot_configs = [
# Main builders
- B('main-builder-dbg', H(std_build_steps + std_host_tests)),
+ B('main-builder-dbg', H(std_build_steps)),
B('main-builder-rel', H(std_build_steps)),
B('main-clang-builder',
- H(compile_step, extra_gyp='clang=1 component=shared_library')),
+ H(compile_step + std_host_tests,
+ extra_gyp='clang=1 component=shared_library')),
B('main-clobber', H(compile_step)),
B('main-tests', H(std_test_steps), T(std_tests, [flakiness_server])),
@@ -147,12 +148,12 @@ def GetBotStepMap():
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')),
+ H(compile_step, experimental, target_arch='x86')),
B('fyi-builder-dbg',
- H(std_build_steps + std_host_tests, experimental,
+ H(std_build_steps, experimental,
extra_gyp='emma_coverage=1')),
B('x86-builder-dbg',
- H(compile_step + std_host_tests, target_arch='x86')),
+ H(compile_step, 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,
« no previous file with comments | « build/android/buildbot/bb_host_steps.py ('k') | build/android/lint.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698