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

Unified Diff: bin/cbuildbot_config.py

Issue 6268020: Add new configs to cbuildbot_conf to match master.cfg (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
« 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: bin/cbuildbot_config.py
diff --git a/bin/cbuildbot_config.py b/bin/cbuildbot_config.py
index ccd514b47b48c524f516ae98183b29ce8bbf76b8..b4ebfac8bc56f636956b25fa54d1f0c3a3897cc4 100644
--- a/bin/cbuildbot_config.py
+++ b/bin/cbuildbot_config.py
@@ -143,6 +143,58 @@ config['arm-generic-bin'].update({
'factory_test_mod' : False,
})
sosa 2011/01/27 23:13:08 Maybe create a default_full ... that is a copy of
dgarrett 2011/01/28 00:18:05 Instead created 'arm' and 'full' defaults which ca
+config['arm-generic-rel'] = default.copy()
sosa 2011/01/27 23:13:08 Can we rename these to arm-generic-full etc.?
+config['arm-generic-rel'].update({
+ 'board' : 'arm-generic',
+
+ 'unittests' : False,
+ 'vm_tests' : False,
+
+ 'usepkg' : False,
+ 'chroot_replace' : True,
+
+ 'archive_build' : True,
+ 'factory_install_mod' : False,
+ 'factory_test_mod' : False,
+})
+
+config['arm-tegra2-rel'] = default.copy()
+config['arm-tegra2-rel'].update({
+ 'board' : 'tegra2-dev-board',
+
+ 'unittests' : False,
+ 'vm_tests' : False,
+
+ 'usepkg' : False,
+ 'chroot_replace' : True,
+
+ 'archive_build' : True,
+ 'factory_install_mod' : False,
+ 'factory_test_mod' : False,
+})
+
+config['x86-generic-rel'] = default.copy()
+config['x86-generic-rel'].update({
+ 'board' : 'x86-generic',
+
+ 'usepkg' : False,
+ 'chroot_replace' : True,
+
+ 'archive_build' : True,
+})
+
+config['x86-pineview-rel'] = default.copy()
+config['x86-pineview-rel'].update({
+ 'board' : 'x86-pineview',
+
+ 'usepkg' : False,
+ 'chroot_replace' : True,
+
+ 'archive_build' : True,
+})
+
+
+
# TODO(dgarrett) delete when buildbot updated to use new names
config['x86_agz_bin'] = config['x86-agz-bin']
config['x86_dogfood_bin'] = config['x86-dogfood-bin']
« 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