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