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

Unified Diff: bin/cbuildbot_config.py

Issue 5531002: Add ability to push to subset of overlays we rev. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: 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
« 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 718cd36a703281b3fc0860a6aead1d4708aec846..c7704e0647545e5a7a3fd2722751728192829ee7 100644
--- a/bin/cbuildbot_config.py
+++ b/bin/cbuildbot_config.py
@@ -19,9 +19,11 @@ 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 -- 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.
+rev_overlays -- Select what overlays to look at for revving. This can be
+ 'public', 'private' or 'both'. There should only be one master bot
David James 2010/12/02 02:06:59 Indentation looks off here. Same below. The comme
sosa 2010/12/02 21:47:49 Done.
+ pushing changes to each overlay per branch.
+push_overlays -- Select what overlays to push at. This should be a subset of
+ rev_overlays for the particular builder. Can be None.
"""
@@ -33,7 +35,8 @@ config['default'] = {
'important' : False,
'unittests' : False,
'smoke_bvt' : False,
- 'overlays': 'public',
+ 'rev_overlays': 'public',
+ 'push_overlays': None,
}
config['x86-generic-pre-flight-queue'] = {
'board' : 'x86-generic',
@@ -43,7 +46,8 @@ config['x86-generic-pre-flight-queue'] = {
'hostname' : 'chromeosbuild2',
'unittests' : True,
'smoke_bvt' : True,
- 'overlays': 'public',
+ 'rev_overlays': 'public',
+ 'push_overlays': 'public',
}
config['x86-mario-pre-flight-queue'] = {
'board' : 'x86-mario',
@@ -52,7 +56,8 @@ config['x86-mario-pre-flight-queue'] = {
'important' : False,
'unittests' : True,
'smoke_bvt' : True,
- 'overlays': 'private',
+ 'rev_overlays': 'both',
+ 'push_overlays': 'private',
}
config['x86-mario-pre-flight-branch'] = {
'board' : 'x86-mario',
@@ -61,7 +66,8 @@ config['x86-mario-pre-flight-branch'] = {
'important' : False,
'unittests' : True,
'smoke_bvt' : True,
- 'overlays': 'both',
+ 'rev_overlays': 'both',
+ 'push_overlays': 'both',
}
config['x86_agz_bin'] = {
'board' : 'x86-agz',
@@ -70,7 +76,8 @@ config['x86_agz_bin'] = {
'important' : False,
'unittests' : True,
'smoke_bvt' : True,
- 'overlays': 'private',
+ 'rev_overlays': 'both',
+ 'push_overlays': None,
}
config['x86_dogfood_bin'] = {
'board' : 'x86-dogfood',
@@ -79,7 +86,8 @@ config['x86_dogfood_bin'] = {
'important' : False,
'unittests' : True,
'smoke_bvt' : True,
- 'overlays': 'private',
+ 'rev_overlays': 'both',
+ 'push_overlays': None,
}
config['x86_pineview_bin'] = {
'board' : 'x86-pineview',
@@ -87,7 +95,8 @@ config['x86_pineview_bin'] = {
'master' : False,
'important' : False,
'unittests': True,
- 'overlays': 'public',
+ 'rev_overlays': 'public',
+ 'push_overlays': None,
}
config['arm_tegra2_bin'] = {
'board' : 'tegra2',
@@ -95,7 +104,8 @@ config['arm_tegra2_bin'] = {
'master' : False,
'important' : False,
'unittests' : False,
- 'overlays': 'public',
+ 'rev_overlays': 'public',
+ 'push_overlays': None,
}
config['arm_generic_bin'] = {
'board' : 'arm-generic',
@@ -103,5 +113,6 @@ config['arm_generic_bin'] = {
'master' : False,
'important' : False,
'unittests' : False,
- 'overlays': 'public',
+ 'rev_overlays': 'public',
+ 'push_overlays': None,
}
« 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