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

Unified Diff: bin/cbuildbot_config.py

Issue 6317014: Add buildbot functionality to cbuildbot. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Created 9 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
« bin/cbuildbot.py ('K') | « bin/cbuildbot.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/cbuildbot_config.py
diff --git a/bin/cbuildbot_config.py b/bin/cbuildbot_config.py
index c13d3626cd0d20ee149c0baec523c041523574a8..3389c11295f1fc7eedeaf4266d072f6205026108 100644
--- a/bin/cbuildbot_config.py
+++ b/bin/cbuildbot_config.py
@@ -25,6 +25,9 @@ push_overlays -- Select what overlays to push at. This should be a subset of
rev_overlays for the particular builder. Must be None if
not a master. There should only be one master bot pushing
changes to each overlay per branch.
+test_mod -- Create a test mod image. (default True)
+factory_install_mod -- Create a factory install image. (default True)
+factory_test_mod -- Create a factory test image. (default True)
"""
@@ -107,6 +110,8 @@ config['arm_tegra2_bin'] = {
'unittests' : False,
'rev_overlays': 'public',
'push_overlays': None,
+ 'factory_install_mod' : False,
+ 'factory_test_mod' : False,
}
config['arm_generic_bin'] = {
'board' : 'arm-generic',
@@ -116,4 +121,6 @@ config['arm_generic_bin'] = {
'unittests' : False,
'rev_overlays': 'public',
'push_overlays': None,
+ 'factory_install_mod' : False,
+ 'factory_test_mod' : False,
}
sosa 2011/01/25 22:54:48 Can you add the full configs?
« bin/cbuildbot.py ('K') | « bin/cbuildbot.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698