OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 | 3 |
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
7 | 7 |
8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
9 from buildbot.scheduler import Scheduler | 9 from buildbot.scheduler import Scheduler |
10 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ## configure the Schedulers | 57 ## configure the Schedulers |
58 # v8 Scheduler | 58 # v8 Scheduler |
59 s_v8 = Scheduler(name='v8_src', | 59 s_v8 = Scheduler(name='v8_src', |
60 branch='master', | 60 branch='master', |
61 treeStableTimer=0, | 61 treeStableTimer=0, |
62 builderNames=['V8 Linux - debug builder', | 62 builderNames=['V8 Linux - debug builder', |
63 'V8 Linux - nosnap builder', | 63 'V8 Linux - nosnap builder', |
64 'V8 Linux - nosnap debug builder', | 64 'V8 Linux - nosnap debug builder', |
65 'V8 Linux - shared', | 65 'V8 Linux - shared', |
66 'V8 Linux - vtunejit', | 66 'V8 Linux - vtunejit', |
67 'V8 Linux - x87 - nosnap - debug', | 67 'V8 Linux - x87 - nosnap - debug builder', |
68 'V8 Linux - predictable', | 68 'V8 Linux - predictable', |
69 'V8 Linux64 - custom snapshot - debug', | 69 'V8 Linux64 - custom snapshot - debug', |
70 'V8 Linux64 - debug builder', | 70 'V8 Linux64 - debug builder', |
71 'V8 Linux gcc 4.8', | 71 'V8 Linux gcc 4.8', |
72 'V8 Linux64 ASAN', | 72 'V8 Linux64 ASAN', |
73 'V8 Linux64 TSAN', | 73 'V8 Linux64 TSAN', |
74 'V8 Linux - arm64 - sim - MSAN', | 74 'V8 Linux - arm64 - sim - MSAN', |
75 'V8 Linux - noi18n - debug', | 75 'V8 Linux - noi18n - debug', |
76 'V8 Win32 - builder', | 76 'V8 Win32 - builder', |
77 'V8 Win32 - debug builder', | 77 'V8 Win32 - debug builder', |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 'auto_reboot' : False, | 315 'auto_reboot' : False, |
316 } | 316 } |
317 | 317 |
318 b_v8_linux_vtunejit = { | 318 b_v8_linux_vtunejit = { |
319 'name': 'V8 Linux - vtunejit', | 319 'name': 'V8 Linux - vtunejit', |
320 'factory': m_annotator.BaseFactory('v8'), | 320 'factory': m_annotator.BaseFactory('v8'), |
321 'category': CATEGORY_FYI + '|vtunejit', | 321 'category': CATEGORY_FYI + '|vtunejit', |
322 'auto_reboot' : False, | 322 'auto_reboot' : False, |
323 } | 323 } |
324 | 324 |
| 325 b_v8_linux_x87_nosnap_debug_builder = { |
| 326 'name': 'V8 Linux - x87 - nosnap - debug builder', |
| 327 'factory': m_annotator.BaseFactory('v8'), |
| 328 'category': CATEGORY_FYI + '|x87', |
| 329 'auto_reboot' : False, |
| 330 } |
| 331 |
325 b_v8_linux_x87_nosnap_debug = { | 332 b_v8_linux_x87_nosnap_debug = { |
326 'name': 'V8 Linux - x87 - nosnap - debug', | 333 'name': 'V8 Linux - x87 - nosnap - debug', |
327 'factory': m_annotator.BaseFactory('v8'), | 334 'factory': m_annotator.BaseFactory('v8'), |
328 'category': CATEGORY_FYI + '|x87', | 335 'category': CATEGORY_FYI + '|x87', |
329 'auto_reboot' : False, | 336 'auto_reboot' : False, |
330 } | 337 } |
331 | 338 |
332 b_v8_linux_predictable = { | 339 b_v8_linux_predictable = { |
333 'name': 'V8 Linux - predictable', | 340 'name': 'V8 Linux - predictable', |
334 'factory': m_annotator.BaseFactory('v8'), | 341 'factory': m_annotator.BaseFactory('v8'), |
(...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1189 b_chromium_linux_snapshot_builder, | 1196 b_chromium_linux_snapshot_builder, |
1190 b_browser_dbg_v8, | 1197 b_browser_dbg_v8, |
1191 b_chromium_rel_linux_asan, | 1198 b_chromium_rel_linux_asan, |
1192 b_linux_gn, | 1199 b_linux_gn, |
1193 b_android_gn, | 1200 b_android_gn, |
1194 b_chromium_rel_linux_perf_v8, | 1201 b_chromium_rel_linux_perf_v8, |
1195 b_chromium_rel_mac9_perf_v8, | 1202 b_chromium_rel_mac9_perf_v8, |
1196 b_chromium_rel_win7_perf_dual_v8, | 1203 b_chromium_rel_win7_perf_dual_v8, |
1197 b_chromium_rel_android_nexus4_perf, | 1204 b_chromium_rel_android_nexus4_perf, |
1198 b_v8_linux_vtunejit, | 1205 b_v8_linux_vtunejit, |
| 1206 b_v8_linux_x87_nosnap_debug_builder, |
1199 b_v8_linux_x87_nosnap_debug, | 1207 b_v8_linux_x87_nosnap_debug, |
1200 b_v8_linux_predictable, | 1208 b_v8_linux_predictable, |
1201 b_v8_linux64_custom_snapshot_debug, | 1209 b_v8_linux64_custom_snapshot_debug, |
1202 b_v8_linux_full_debug, | 1210 b_v8_linux_full_debug, |
1203 b_v8_linux_interpreted_regexp, | 1211 b_v8_linux_interpreted_regexp, |
1204 b_v8_linux_random_deopt_fuzzer_debug, | 1212 b_v8_linux_random_deopt_fuzzer_debug, |
1205 b_auto_roll_release_process, | 1213 b_auto_roll_release_process, |
1206 b_auto_roll_push, | 1214 b_auto_roll_push, |
1207 b_auto_roll_deps, | 1215 b_auto_roll_deps, |
1208 b_auto_roll_v8_deps, | 1216 b_auto_roll_v8_deps, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1246 # too low. Must keep at least a few days worth of builds. | 1254 # too low. Must keep at least a few days worth of builds. |
1247 c['buildHorizon'] = 3000 | 1255 c['buildHorizon'] = 3000 |
1248 c['logHorizon'] = 3000 | 1256 c['logHorizon'] = 3000 |
1249 # Must be at least 2x the number of slaves. | 1257 # Must be at least 2x the number of slaves. |
1250 c['eventHorizon'] = 200 | 1258 c['eventHorizon'] = 200 |
1251 | 1259 |
1252 ####### PROJECT IDENTITY | 1260 ####### PROJECT IDENTITY |
1253 | 1261 |
1254 c['projectName'] = ActiveMaster.project_name | 1262 c['projectName'] = ActiveMaster.project_name |
1255 c['projectURL'] = config.Master.project_url | 1263 c['projectURL'] = config.Master.project_url |
OLD | NEW |