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

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: Typo fix 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..1aa3467fd969a5f7c3280649a44abeee7ccfa8d7 100644
--- a/bin/cbuildbot_config.py
+++ b/bin/cbuildbot_config.py
@@ -33,6 +33,7 @@ config['default'] = {
'important' : False,
'unittests' : False,
'smoke_bvt' : False,
+ 'overlays': 'public',
diandersAtChromium 2010/11/03 23:53:34 This (and others) are a change in behavior. I bel
davidjames 2010/11/10 18:30:10 Done.
}
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',
}

Powered by Google App Engine
This is Rietveld 408576698