| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 # This is the buildmaster config file for the 'nacl' bot. It must | 8 # This is the buildmaster config file for the 'nacl' bot. It must |
| 9 # be installed as 'master.cfg' in your buildmaster's base directory | 9 # be installed as 'master.cfg' in your buildmaster's base directory |
| 10 # (although the filename can be changed with the --basedir option to | 10 # (although the filename can be changed with the --basedir option to |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 from buildbot.changes import svnpoller | 24 from buildbot.changes import svnpoller |
| 25 from buildbot.scheduler import Scheduler | 25 from buildbot.scheduler import Scheduler |
| 26 from buildbot.scheduler import Triggerable | 26 from buildbot.scheduler import Triggerable |
| 27 | 27 |
| 28 from master import master_utils | 28 from master import master_utils |
| 29 from master import slaves_list | 29 from master import slaves_list |
| 30 from master.factory import chromium_factory | 30 from master.factory import chromium_factory |
| 31 | 31 |
| 32 import config | 32 import config |
| 33 import master_site_config |
| 33 | 34 |
| 34 ActiveMaster = config.Master.NativeClientChrome | 35 ActiveMaster = master_site_config.NativeClientChrome |
| 35 | 36 |
| 36 TREE_GATE_KEEPER = False | 37 TREE_GATE_KEEPER = False |
| 37 GOOD_REVISIONS = False | 38 GOOD_REVISIONS = False |
| 38 | 39 |
| 39 # This is the dictionary that the buildmaster pays attention to. We also use | 40 # This is the dictionary that the buildmaster pays attention to. We also use |
| 40 # a shorter alias to save typing. | 41 # a shorter alias to save typing. |
| 41 c = BuildmasterConfig = {} | 42 c = BuildmasterConfig = {} |
| 42 | 43 |
| 43 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) | 44 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) |
| 44 | 45 |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 ] | 298 ] |
| 298 c['status'].append(goodrevisions.GoodRevisions( | 299 c['status'].append(goodrevisions.GoodRevisions( |
| 299 good_revision_steps={'': all_steps}, | 300 good_revision_steps={'': all_steps}, |
| 300 store_revisions_url=ActiveMaster.store_revisions_url)) | 301 store_revisions_url=ActiveMaster.store_revisions_url)) |
| 301 | 302 |
| 302 | 303 |
| 303 ####### PROJECT IDENTITY | 304 ####### PROJECT IDENTITY |
| 304 | 305 |
| 305 # Buildbot master url: | 306 # Buildbot master url: |
| 306 c['buildbotURL'] = 'http://build.chromium.org/p/client.nacl.chrome/' | 307 c['buildbotURL'] = 'http://build.chromium.org/p/client.nacl.chrome/' |
| OLD | NEW |