| 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', | |
| 35 'Linux64 Debug', | 33 'Linux64 Debug', |
| 36 'Linux64 Release', | 34 'Linux64 Release', |
| 37 'Linux Asan', | 35 'Linux Asan', |
| 38 'Linux Memcheck', | 36 'Linux Memcheck', |
| 39 'Linux MSan', | 37 'Linux MSan', |
| 40 'Linux Tsan v2', | 38 'Linux Tsan v2', |
| 41 'Linux UBSan', | 39 'Linux UBSan', |
| 42 'Linux UBSan vptr', | 40 'Linux UBSan vptr', |
| 43 'Linux64 Release [large tests]', | 41 'Linux64 Release [large tests]', |
| 44 'Linux64 Debug (GN)', | 42 'Linux64 Debug (GN)', |
| 45 'Linux64 Release (GN)', | 43 'Linux64 Release (GN)', |
| 46 'Linux64 Release (Libfuzzer)', | 44 'Linux64 Release (Libfuzzer)', |
| 47 ]), | 45 ]), |
| 48 ]) | 46 ]) |
| 49 | 47 |
| 50 # 'slavebuilddir' below is used to reduce the number of checkouts since some | 48 # 'slavebuilddir' below is used to reduce the number of checkouts since some |
| 51 # of the builders are pooled over multiple slave machines. | 49 # of the builders are pooled over multiple slave machines. |
| 52 specs = [ | 50 specs = [ |
| 53 {'name': 'Linux32 ARM', 'slavebuilddir': 'linux_arm'}, | 51 {'name': 'Linux32 ARM', 'slavebuilddir': 'linux_arm'}, |
| 54 {'name': 'Linux32 Debug', 'slavebuilddir': 'linux32'}, | |
| 55 {'name': 'Linux32 Release', 'slavebuilddir': 'linux32'}, | |
| 56 {'name': 'Linux64 Debug', 'slavebuilddir': 'linux64'}, | 52 {'name': 'Linux64 Debug', 'slavebuilddir': 'linux64'}, |
| 57 {'name': 'Linux64 Release', 'slavebuilddir': 'linux64'}, | 53 {'name': 'Linux64 Release', 'slavebuilddir': 'linux64'}, |
| 58 {'name': 'Linux Asan', 'slavebuilddir': 'linux_asan'}, | 54 {'name': 'Linux Asan', 'slavebuilddir': 'linux_asan'}, |
| 59 {'name': 'Linux MSan', 'slavebuilddir': 'linux_msan'}, | 55 {'name': 'Linux MSan', 'slavebuilddir': 'linux_msan'}, |
| 60 {'name': 'Linux Memcheck', 'slavebuilddir': 'linux_memcheck_tsan'}, | 56 {'name': 'Linux Memcheck', 'slavebuilddir': 'linux_memcheck_tsan'}, |
| 61 {'name': 'Linux Tsan v2', 'slavebuilddir': 'linux_tsan2'}, | 57 {'name': 'Linux Tsan v2', 'slavebuilddir': 'linux_tsan2'}, |
| 62 {'name': 'Linux UBSan', 'slavebuilddir': 'linux_ubsan'}, | 58 {'name': 'Linux UBSan', 'slavebuilddir': 'linux_ubsan'}, |
| 63 {'name': 'Linux UBSan vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, | 59 {'name': 'Linux UBSan vptr', 'slavebuilddir': 'linux_ubsan_vptr'}, |
| 64 { | 60 { |
| 65 'name': 'Linux64 Release [large tests]', | 61 'name': 'Linux64 Release [large tests]', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 79 { | 75 { |
| 80 'name': spec['name'], | 76 'name': spec['name'], |
| 81 'factory': m_annotator.BaseFactory(spec['recipe']) | 77 'factory': m_annotator.BaseFactory(spec['recipe']) |
| 82 if 'recipe' in spec | 78 if 'recipe' in spec |
| 83 else m_remote_run('webrtc/standalone'), | 79 else m_remote_run('webrtc/standalone'), |
| 84 'notify_on_missing': True, | 80 'notify_on_missing': True, |
| 85 'category': spec.get('category', 'compile|testers'), | 81 'category': spec.get('category', 'compile|testers'), |
| 86 'slavebuilddir': spec['slavebuilddir'], | 82 'slavebuilddir': spec['slavebuilddir'], |
| 87 } for spec in specs | 83 } for spec in specs |
| 88 ]) | 84 ]) |
| OLD | NEW |