Index: configs/chromium/master/master.cfg |
diff --git a/configs/chromium/master/master.cfg b/configs/chromium/master/master.cfg |
deleted file mode 100644 |
index 3f3857495b12b5cc56fb997aec08662ff60141ef..0000000000000000000000000000000000000000 |
--- a/configs/chromium/master/master.cfg |
+++ /dev/null |
@@ -1,45 +0,0 @@ |
-# Copyright (c) 2011 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-from master import master_utils |
-from master import slaves_list |
- |
-import config |
- |
-ActiveMaster = config.Master.ChromiumFYI |
- |
-c = BuildmasterConfig = {} |
-c['change_source'] = [] |
-c['schedulers'] = [] |
-c['builders'] = [] |
-c['status'] = [] |
- |
- |
-import master_source_cfg |
-import master_mac_latest_cfg |
- |
-master_source_cfg.Update(config, ActiveMaster, c) |
-master_mac_latest_cfg.Update(config, ActiveMaster, c) |
- |
-c['logCompressionLimit'] = False |
-c['projectName'] = ActiveMaster.project_name |
-c['projectURL'] = config.Master.project_url |
-c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/' |
- |
-# Associate the slaves to the manual builders. The configuration is in |
-# slaves.cfg. |
-slaves = slaves_list.SlavesList('slaves.cfg', 'ChromiumFYI') |
-for builder in c['builders']: |
- builder['slavenames'] = slaves.GetSlavesName(builder=builder['name']) |
- |
-# The 'slaves' list defines the set of allowable buildslaves. List all the |
-# slaves registered to a builder. Remove dupes. |
-c['slaves'] = master_utils.AutoSetupSlaves(c['builders'], |
- config.Master.GetBotPassword()) |
-master_utils.VerifySetup(c, slaves) |
- |
-# Adds common status and tools to this master. |
-master_utils.AutoSetupMaster( |
- c, ActiveMaster, |
- public_html="../../../third_party/chromium_buildbot/masters/master.chromium/public_html") |