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

Unified Diff: bin/cbuildbot_config.py

Issue 4442001: Add more error checking to preflight queue. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git
Patch Set: s/os.path.exists/os.path.isdir/g Created 10 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
Index: bin/cbuildbot_config.py
diff --git a/bin/cbuildbot_config.py b/bin/cbuildbot_config.py
index 831ef06bd17db4b0386c3272747d0dff57e83364..718cd36a703281b3fc0860a6aead1d4708aec846 100644
--- a/bin/cbuildbot_config.py
+++ b/bin/cbuildbot_config.py
@@ -19,9 +19,9 @@ hostname -- Needed for 'important' slaves. The hostname of the bot. Should
match hostname in slaves.cfg in buildbot checkout.
unittests -- Runs unittests for packages.
smoke_bvt -- Runs the test smoke suite in a qemu-based VM using KVM.
-overlays -- If this bot is a master bot, select what overlays to push changes
- to. This can be 'public', 'private', or 'both'. There should only
- be one bot pushing changes to each overlay.
+overlays -- Select what overlays to look at. This can be 'public', 'private'
+ or 'both'. There should only be one master bot pushing changes to
+ each overlay per branch.
"""
@@ -33,6 +33,7 @@ config['default'] = {
'important' : False,
'unittests' : False,
'smoke_bvt' : False,
+ 'overlays': 'public',
}
config['x86-generic-pre-flight-queue'] = {
'board' : 'x86-generic',
@@ -69,6 +70,7 @@ config['x86_agz_bin'] = {
'important' : False,
'unittests' : True,
'smoke_bvt' : True,
+ 'overlays': 'private',
}
config['x86_dogfood_bin'] = {
'board' : 'x86-dogfood',
@@ -77,52 +79,29 @@ config['x86_dogfood_bin'] = {
'important' : False,
'unittests' : True,
'smoke_bvt' : True,
+ 'overlays': 'private',
}
config['x86_pineview_bin'] = {
'board' : 'x86-pineview',
'uprev' : True,
'master' : False,
'important' : False,
- 'hostname' : 'codf200.jail',
'unittests': True,
+ 'overlays': 'public',
}
config['arm_tegra2_bin'] = {
'board' : 'tegra2',
'uprev' : True,
'master' : False,
'important' : False,
- 'hostname' : 'codg172.jail',
- 'unittests' : False,
-}
-config['arm_voguev210_bin'] = {
- 'board' : 'voguev210',
- 'uprev' : True,
- 'master' : False,
- 'important' : False,
- 'hostname' : 'codf196.jail',
- 'unittests' : False,
-}
-config['arm_beagleboard_bin'] = {
- 'board' : 'beagleboard',
- 'master' : False,
- 'uprev' : True,
- 'important' : False,
- 'hostname' : 'codf202.jail',
- 'unittests' : False,
-}
-config['arm_st1q_bin'] = {
- 'board' : 'st1q',
- 'uprev' : True,
- 'master' : False,
- 'important' : False,
- 'hostname' : 'codg158.jail',
'unittests' : False,
+ 'overlays': 'public',
}
config['arm_generic_bin'] = {
'board' : 'arm-generic',
'uprev' : True,
'master' : False,
'important' : False,
- 'hostname' : 'codg175.jail',
'unittests' : False,
+ 'overlays': 'public',
}
« no previous file with comments | « bin/cbuildbot.py ('k') | bin/cbuildbot_unittest.py » ('j') | bin/cbuildbot_unittest.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698