| 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() |
| 11 | 11 |
| 12 def Update(c): | 12 def Update(c): |
| 13 c['schedulers'].extend([ | 13 c['schedulers'].extend([ |
| 14 SingleBranchScheduler(name='webrtc_linux_scheduler', | 14 SingleBranchScheduler(name='webrtc_linux_scheduler', |
| 15 branch='master', | 15 branch='master', |
| 16 treeStableTimer=0, | 16 treeStableTimer=0, |
| 17 builderNames=[ | 17 builderNames=[ |
| 18 'Linux32 ARM', | 18 'Linux32 ARM', |
| 19 'Linux64 GCC', |
| 19 'Linux64 Release (swarming)', | 20 'Linux64 Release (swarming)', |
| 20 'Linux Tsan v2 (parallel)', | 21 'Linux Tsan v2 (parallel)', |
| 21 ]), | 22 ]), |
| 22 # Run WebRTC DEPS roller every EMEA morning at 4am, 12pm and 8pm. | 23 # Run WebRTC DEPS roller at CET hours: 4am, 12pm and 8pm. |
| 23 Nightly( | 24 Nightly( |
| 24 name='webrtc_deps', | 25 name='webrtc_deps', |
| 25 branch=None, | 26 branch=None, |
| 26 builderNames=['Auto-roll - WebRTC DEPS'], | 27 builderNames=['Auto-roll - WebRTC DEPS'], |
| 27 hour=[19,3,11], | 28 hour=[19,3,11], # Pacific timezone. |
| 28 ), | 29 ), |
| 29 ]) | 30 ]) |
| 30 | 31 |
| 31 specs = [ | 32 specs = [ |
| 32 { | 33 { |
| 33 'name': 'Linux32 ARM', | 34 'name': 'Linux32 ARM', |
| 34 'slavebuilddir': 'linux_arm', | 35 'slavebuilddir': 'linux_arm', |
| 35 }, | 36 }, |
| 36 { | 37 { |
| 37 'name': 'Linux64 GCC', | 38 'name': 'Linux64 GCC', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 56 { | 57 { |
| 57 'name': spec['name'], | 58 'name': spec['name'], |
| 58 'factory': m_annotator.BaseFactory(spec.get('recipe', | 59 'factory': m_annotator.BaseFactory(spec.get('recipe', |
| 59 'webrtc/standalone')), | 60 'webrtc/standalone')), |
| 60 'notify_on_missing': True, | 61 'notify_on_missing': True, |
| 61 'category': 'linux', | 62 'category': 'linux', |
| 62 'slavebuilddir': spec['slavebuilddir'], | 63 'slavebuilddir': spec['slavebuilddir'], |
| 63 'auto_reboot': False, | 64 'auto_reboot': False, |
| 64 } for spec in specs | 65 } for spec in specs |
| 65 ]) | 66 ]) |
| OLD | NEW |