Index: masters/master.chromium.webrtc.fyi/master_linux_cfg.py |
diff --git a/masters/master.chromium.webrtc.fyi/master_linux_cfg.py b/masters/master.chromium.webrtc.fyi/master_linux_cfg.py |
deleted file mode 100644 |
index 90c18d720e2800c219fd74f55506f59b8d55df5e..0000000000000000000000000000000000000000 |
--- a/masters/master.chromium.webrtc.fyi/master_linux_cfg.py |
+++ /dev/null |
@@ -1,52 +0,0 @@ |
-# Copyright (c) 2012 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 buildbot.changes.filter import ChangeFilter |
-from buildbot.scheduler import Periodic |
-from buildbot.schedulers.basic import SingleBranchScheduler |
- |
-from master.factory import annotator_factory |
- |
-m_annotator = annotator_factory.AnnotatorFactory() |
- |
-def Update(c): |
- buildernames_list = [ |
- 'Linux', |
- 'Linux GN', |
- 'Linux GN (dbg)', |
- ] |
- c['schedulers'].extend([ |
- SingleBranchScheduler(name='linux_webrtc_scheduler', |
- change_filter=ChangeFilter(project='webrtc', |
- branch='master'), |
- treeStableTimer=0, |
- builderNames=buildernames_list), |
- Periodic(name='linux_periodic_scheduler', |
- periodicBuildTimer=60*60, |
- builderNames=buildernames_list), |
- ]) |
- specs = [ |
- {'name': 'Linux'}, |
- { |
- 'name': 'Linux GN', |
- 'recipe': 'chromium_gn', |
- 'slavebuilddir': 'linux_gn', |
- }, |
- { |
- 'name': 'Linux GN (dbg)', |
- 'recipe': 'chromium_gn', |
- 'slavebuilddir': 'linux_gn', |
- }, |
- ] |
- |
- c['builders'].extend([ |
- { |
- 'name': spec['name'], |
- 'factory': m_annotator.BaseFactory(spec.get('recipe', |
- 'webrtc/chromium')), |
- 'category': 'linux', |
- 'notify_on_missing': True, |
- 'slavebuilddir': spec.get('slavebuilddir', 'linux'), |
- } for spec in specs |
- ]) |