| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from buildbot.scheduler import Nightly | 5 from buildbot.scheduler import Nightly |
| 6 from buildbot.schedulers.basic import SingleBranchScheduler | 6 from buildbot.schedulers.basic import SingleBranchScheduler |
| 7 | 7 |
| 8 from master.factory import annotator_factory | 8 from master.factory import annotator_factory |
| 9 | 9 |
| 10 m_annotator = annotator_factory.AnnotatorFactory() | 10 m_annotator = annotator_factory.AnnotatorFactory() |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 hour=[19,3,11], | 27 hour=[19,3,11], |
| 28 ), | 28 ), |
| 29 ]) | 29 ]) |
| 30 | 30 |
| 31 specs = [ | 31 specs = [ |
| 32 { | 32 { |
| 33 'name': 'Linux32 ARM', | 33 'name': 'Linux32 ARM', |
| 34 'slavebuilddir': 'linux_arm', | 34 'slavebuilddir': 'linux_arm', |
| 35 }, | 35 }, |
| 36 { | 36 { |
| 37 'name': 'Linux64 GCC', |
| 38 'slavebuilddir': 'linux_gcc', |
| 39 }, |
| 40 { |
| 37 'name': 'Linux Tsan v2 (parallel)', | 41 'name': 'Linux Tsan v2 (parallel)', |
| 38 'slavebuilddir': 'linux_tsan2', | 42 'slavebuilddir': 'linux_tsan2', |
| 39 }, | 43 }, |
| 40 { | 44 { |
| 41 'name': 'Linux64 Release (swarming)', | 45 'name': 'Linux64 Release (swarming)', |
| 42 'slavebuilddir': 'linux_swarming', | 46 'slavebuilddir': 'linux_swarming', |
| 43 }, | 47 }, |
| 44 { | 48 { |
| 45 'name': 'Auto-roll - WebRTC DEPS', | 49 'name': 'Auto-roll - WebRTC DEPS', |
| 46 'recipe': 'webrtc/auto_roll_webrtc_deps', | 50 'recipe': 'webrtc/auto_roll_webrtc_deps', |
| 47 'slavebuilddir': 'linux_autoroll', | 51 'slavebuilddir': 'linux_autoroll', |
| 48 }, | 52 }, |
| 49 ] | 53 ] |
| 50 | 54 |
| 51 c['builders'].extend([ | 55 c['builders'].extend([ |
| 52 { | 56 { |
| 53 'name': spec['name'], | 57 'name': spec['name'], |
| 54 'factory': m_annotator.BaseFactory(spec.get('recipe', | 58 'factory': m_annotator.BaseFactory(spec.get('recipe', |
| 55 'webrtc/standalone')), | 59 'webrtc/standalone')), |
| 56 'notify_on_missing': True, | 60 'notify_on_missing': True, |
| 57 'category': 'linux', | 61 'category': 'linux', |
| 58 'slavebuilddir': spec['slavebuilddir'], | 62 'slavebuilddir': spec['slavebuilddir'], |
| 59 'auto_reboot': False, | 63 'auto_reboot': False, |
| 60 } for spec in specs | 64 } for spec in specs |
| 61 ]) | 65 ]) |
| OLD | NEW |