| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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.schedulers.basic import SingleBranchScheduler | 5 from buildbot.schedulers.basic import SingleBranchScheduler |
| 6 | 6 |
| 7 from master.factory import annotator_factory | 7 from master.factory import annotator_factory |
| 8 from master.factory import remote_run_factory | 8 from master.factory import remote_run_factory |
| 9 | 9 |
| 10 import master_site_config | 10 import master_site_config |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 m_annotator = annotator_factory.AnnotatorFactory() | 23 m_annotator = annotator_factory.AnnotatorFactory() |
| 24 | 24 |
| 25 | 25 |
| 26 def Update(c): | 26 def Update(c): |
| 27 c['schedulers'].extend([ | 27 c['schedulers'].extend([ |
| 28 SingleBranchScheduler(name='webrtc_linux_scheduler', | 28 SingleBranchScheduler(name='webrtc_linux_scheduler', |
| 29 branch='master', | 29 branch='master', |
| 30 treeStableTimer=30, | 30 treeStableTimer=30, |
| 31 builderNames=[ | 31 builderNames=[ |
| 32 'Linux32 ARM', | 32 'Linux32 ARM', |
| 33 'Linux32 Debug', |
| 34 'Linux32 Release', |
| 33 'Linux64 Debug', | 35 'Linux64 Debug', |
| 34 'Linux64 Release', | 36 'Linux64 Release', |
| 35 'Linux Asan', | 37 'Linux Asan', |
| 36 'Linux Memcheck', | 38 'Linux Memcheck', |
| 37 'Linux MSan', | 39 'Linux MSan', |
| 38 'Linux Tsan v2', | 40 'Linux Tsan v2', |
| 39 'Linux UBSan', | 41 'Linux UBSan', |
| 40 'Linux UBSan vptr', | 42 'Linux UBSan vptr', |
| 41 'Linux64 Release [large tests]', | 43 'Linux64 Release [large tests]', |
| 42 'Linux64 Debug (GYP)', | 44 'Linux64 Debug (GYP)', |
| 43 'Linux64 Release (GYP)', | 45 'Linux64 Release (GYP)', |
| 44 'Linux64 Release (Libfuzzer)', | 46 'Linux64 Release (Libfuzzer)', |
| 45 ]), | 47 ]), |
| 46 ]) | 48 ]) |
| 47 | 49 |
| 48 # 'slavebuilddir' below is used to reduce the number of checkouts since some | 50 # 'slavebuilddir' below is used to reduce the number of checkouts since some |
| 49 # of the builders are pooled over multiple slave machines. | 51 # of the builders are pooled over multiple slave machines. |
| 50 specs = [ | 52 specs = [ |
| 51 {'name': 'Linux32 ARM', 'slavebuilddir': 'linux_arm'}, | 53 {'name': 'Linux32 ARM', 'slavebuilddir': 'linux_arm'}, |
| 54 {'name': 'Linux32 Debug', 'slavebuilddir': 'linux32'}, |
| 55 {'name': 'Linux32 Release', 'slavebuilddir': 'linux32'}, |
| 52 {'name': 'Linux64 Debug', 'slavebuilddir': 'linux64'}, | 56 {'name': 'Linux64 Debug', 'slavebuilddir': 'linux64'}, |
| 53 {'name': 'Linux64 Release', 'slavebuilddir': 'linux64'}, | 57 {'name': 'Linux64 Release', 'slavebuilddir': 'linux64'}, |
| 54 {'name': 'Linux Asan', 'slavebuilddir': 'linux_asan'}, | 58 {'name': 'Linux Asan', 'slavebuilddir': 'linux_asan'}, |
| 55 {'name': 'Linux MSan', 'slavebuilddir': 'linux_msan'}, | 59 {'name': 'Linux MSan', 'slavebuilddir': 'linux_msan'}, |
| 56 {'name': 'Linux Memcheck', 'slavebuilddir': 'linux_memcheck_tsan'}, | 60 {'name': 'Linux Memcheck', 'slavebuilddir': 'linux_memcheck_tsan'}, |
| 57 {'name': 'Linux Tsan v2', 'slavebuilddir': 'linux_tsan2'}, | 61 {'name': 'Linux Tsan v2', 'slavebuilddir': 'linux_tsan2'}, |
| 58 {'name': 'Linux UBSan', 'slavebuilddir': 'linux_ubsan'}, | 62 {'name': 'Linux UBSan', 'slavebuilddir': 'linux_ubsan'}, |
| 59 {'name': 'Linux UBSan vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, | 63 {'name': 'Linux UBSan vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, |
| 60 { | 64 { |
| 61 'name': 'Linux64 Release [large tests]', | 65 'name': 'Linux64 Release [large tests]', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 75 { | 79 { |
| 76 'name': spec['name'], | 80 'name': spec['name'], |
| 77 'factory': m_annotator.BaseFactory(spec['recipe']) | 81 'factory': m_annotator.BaseFactory(spec['recipe']) |
| 78 if 'recipe' in spec | 82 if 'recipe' in spec |
| 79 else m_remote_run('webrtc/standalone'), | 83 else m_remote_run('webrtc/standalone'), |
| 80 'notify_on_missing': True, | 84 'notify_on_missing': True, |
| 81 'category': spec.get('category', 'compile|testers'), | 85 'category': spec.get('category', 'compile|testers'), |
| 82 'slavebuilddir': spec['slavebuilddir'], | 86 'slavebuilddir': spec['slavebuilddir'], |
| 83 } for spec in specs | 87 } for spec in specs |
| 84 ]) | 88 ]) |
| OLD | NEW |