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

Unified Diff: masters/master.client.webrtc.fyi/master_mac_cfg.py

Issue 573693002: WebRTC: Remove Valgrind based FYI bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 3 months 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
« no previous file with comments | « masters/master.client.webrtc.fyi/master_linux_cfg.py ('k') | masters/master.client.webrtc.fyi/slaves.cfg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.client.webrtc.fyi/master_mac_cfg.py
diff --git a/masters/master.client.webrtc.fyi/master_mac_cfg.py b/masters/master.client.webrtc.fyi/master_mac_cfg.py
deleted file mode 100644
index 50fc113982880a3fff1ad0faef2e8b7f9be38c4e..0000000000000000000000000000000000000000
--- a/masters/master.client.webrtc.fyi/master_mac_cfg.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2013 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.schedulers.basic import SingleBranchScheduler
-
-from master.factory import annotator_factory
-
-m_annotator = annotator_factory.AnnotatorFactory()
-
-def Update(c):
- c['schedulers'].extend([
- SingleBranchScheduler(name='webrtc_mac_scheduler',
- branch='trunk',
- treeStableTimer=0,
- builderNames=[
- 'Mac 10.6 Memcheck',
- 'Mac 10.6 TSan',
- ]),
- ])
-
- specs = [
- {'name': 'Mac 10.6 Memcheck', 'slavebuilddir': 'mac_memcheck'},
- {'name': 'Mac 10.6 TSan', 'slavebuilddir': 'mac_tsan'},
- ]
-
- c['builders'].extend([
- {
- 'name': spec['name'],
- 'factory': m_annotator.BaseFactory('webrtc/standalone'),
- 'notify_on_missing': True,
- 'category': 'mac',
- 'slavebuilddir': spec['slavebuilddir'],
- } for spec in specs
- ])
« no previous file with comments | « masters/master.client.webrtc.fyi/master_linux_cfg.py ('k') | masters/master.client.webrtc.fyi/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698