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

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

Issue 11975033: Add android release trybot and tester configs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sorted trybot list Created 7 years, 11 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 d5018e08638fe69a8cf5e85c42ca364b5744c48a..b92440d676dd953f70b1cbef6bcda9681f3eeea3 100755
--- a/build/android/buildbot/bb_run_bot.py
+++ b/build/android/buildbot/bb_run_bot.py
@@ -80,10 +80,11 @@ def GetBotStepMap():
# Main builders
B('main-builder-dbg',
['bb_compile', 'bb_run_findbugs', 'bb_zip_build'], None, None),
- B('main-builder-rel', compile_step, None, None),
+ B('main-builder-rel',
+ ['bb_compile', 'bb_zip_build'], None, None),
B('main-clang-builder', compile_step, None, None),
B('main-clobber', compile_step, None, None),
- B('main-tests-dbg', std_test_steps, T(std_tests), None),
+ B('main-tests', std_test_steps, T(std_tests), None),
# Other waterfalls
B('asan-builder', std_build_steps, None, None),
@@ -113,9 +114,10 @@ def GetBotStepMap():
# These bots have identical configuration to ones defined earlier.
copy_map = [
('try-builder-dbg', 'main-builder-dbg'),
- ('try-tests-dbg', 'main-tests-dbg'),
+ ('try-builder-rel', 'main-builder-rel'),
('try-clang-builder', 'main-clang-builder'),
('try-fyi-builder-dbg', 'fyi-builder-dbg'),
+ ('try-tests', 'main-tests'),
]
for to_id, from_id in copy_map:
assert to_id not in bot_map
« 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