| Index: bin/cbuildbot_config.py
|
| diff --git a/bin/cbuildbot_config.py b/bin/cbuildbot_config.py
|
| index 718cd36a703281b3fc0860a6aead1d4708aec846..831ef06bd17db4b0386c3272747d0dff57e83364 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 -- 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.
|
| +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.
|
| """
|
|
|
|
|
| @@ -33,7 +33,6 @@ config['default'] = {
|
| 'important' : False,
|
| 'unittests' : False,
|
| 'smoke_bvt' : False,
|
| - 'overlays': 'public',
|
| }
|
| config['x86-generic-pre-flight-queue'] = {
|
| 'board' : 'x86-generic',
|
| @@ -70,7 +69,6 @@ config['x86_agz_bin'] = {
|
| 'important' : False,
|
| 'unittests' : True,
|
| 'smoke_bvt' : True,
|
| - 'overlays': 'private',
|
| }
|
| config['x86_dogfood_bin'] = {
|
| 'board' : 'x86-dogfood',
|
| @@ -79,29 +77,52 @@ 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',
|
| }
|
|
|