| 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 | 10 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 'V8 Linux - nosnap builder', | 57 'V8 Linux - nosnap builder', |
| 58 'V8 Linux - nosnap debug builder', | 58 'V8 Linux - nosnap debug builder', |
| 59 'V8 Linux - shared', | 59 'V8 Linux - shared', |
| 60 'V8 Linux - vtunejit', | 60 'V8 Linux - vtunejit', |
| 61 'V8 Linux - predictable', | 61 'V8 Linux - predictable', |
| 62 'V8 Linux64 - custom snapshot - debug builder', | 62 'V8 Linux64 - custom snapshot - debug builder', |
| 63 'V8 Linux64 - debug builder', | 63 'V8 Linux64 - debug builder', |
| 64 'V8 Linux64 - internal snapshot', | 64 'V8 Linux64 - internal snapshot', |
| 65 'V8 Linux64 - cfi', | 65 'V8 Linux64 - cfi', |
| 66 'V8 Linux64 - gcov coverage', | 66 'V8 Linux64 - gcov coverage', |
| 67 'V8 Linux64 - gyp', |
| 67 'V8 Linux gcc 4.8', | 68 'V8 Linux gcc 4.8', |
| 68 'V8 Linux64 ASAN', | 69 'V8 Linux64 ASAN', |
| 69 'V8 Linux64 TSAN', | 70 'V8 Linux64 TSAN', |
| 70 'V8 Linux - arm64 - sim - MSAN', | 71 'V8 Linux - arm64 - sim - MSAN', |
| 71 'V8 Linux - noi18n - debug', | 72 'V8 Linux - noi18n - debug', |
| 72 'V8 Win32 - builder', | 73 'V8 Win32 - builder', |
| 73 'V8 Win32 - debug builder', | 74 'V8 Win32 - debug builder', |
| 74 'V8 Win32 - nosnap - shared', | 75 'V8 Win32 - nosnap - shared', |
| 75 'V8 Win64', | 76 'V8 Win64', |
| 76 'V8 Win64 - debug', | 77 'V8 Win64 - debug', |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 'auto_reboot' : False, | 333 'auto_reboot' : False, |
| 333 } | 334 } |
| 334 | 335 |
| 335 b_v8_linux64_custom_snapshot_debug = { | 336 b_v8_linux64_custom_snapshot_debug = { |
| 336 'name': 'V8 Linux64 - custom snapshot - debug', | 337 'name': 'V8 Linux64 - custom snapshot - debug', |
| 337 'factory': m_annotator.BaseFactory('v8'), | 338 'factory': m_annotator.BaseFactory('v8'), |
| 338 'category': CATEGORY_LINUX64, | 339 'category': CATEGORY_LINUX64, |
| 339 'auto_reboot' : False, | 340 'auto_reboot' : False, |
| 340 } | 341 } |
| 341 | 342 |
| 343 b_v8_linux64_gyp = { |
| 344 'name': 'V8 Linux64 - gyp', |
| 345 'slavebuilddir': 'linux64-gyp', |
| 346 'factory': m_annotator.BaseFactory('v8'), |
| 347 'category': CATEGORY_LINUX64, |
| 348 'auto_reboot' : False, |
| 349 } |
| 350 |
| 342 b_v8_linux64_custom_snapshot_gcstress = { | 351 b_v8_linux64_custom_snapshot_gcstress = { |
| 343 'name': 'V8 Linux64 GC Stress - custom snapshot', | 352 'name': 'V8 Linux64 GC Stress - custom snapshot', |
| 344 'factory': m_annotator.BaseFactory('v8'), | 353 'factory': m_annotator.BaseFactory('v8'), |
| 345 'category': CATEGORY_GC_STRESS, | 354 'category': CATEGORY_GC_STRESS, |
| 346 'auto_reboot' : False, | 355 'auto_reboot' : False, |
| 347 } | 356 } |
| 348 | 357 |
| 349 b_v8_linux_nosnap = { | 358 b_v8_linux_nosnap = { |
| 350 'name': 'V8 Linux - nosnap', | 359 'name': 'V8 Linux - nosnap', |
| 351 'slavebuilddir': 'linux', | 360 'slavebuilddir': 'linux', |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 b_v8_linux_nosnap, | 616 b_v8_linux_nosnap, |
| 608 b_v8_linux_nosnap_debug, | 617 b_v8_linux_nosnap_debug, |
| 609 b_v8_linux_noi18n_debug, | 618 b_v8_linux_noi18n_debug, |
| 610 b_v8_linux_debug_avx2, | 619 b_v8_linux_debug_avx2, |
| 611 b_v8_linux64_builder, | 620 b_v8_linux64_builder, |
| 612 b_v8_linux64_debug_builder, | 621 b_v8_linux64_debug_builder, |
| 613 b_v8_linux64_custom_snapshot_debug_builder, | 622 b_v8_linux64_custom_snapshot_debug_builder, |
| 614 b_v8_linux64, | 623 b_v8_linux64, |
| 615 b_v8_linux64_avx2, | 624 b_v8_linux64_avx2, |
| 616 b_v8_linux64_internal_snapshot, | 625 b_v8_linux64_internal_snapshot, |
| 626 b_v8_linux64_gyp, |
| 617 b_v8_linux64_debug, | 627 b_v8_linux64_debug, |
| 618 b_v8_linux64_custom_snapshot_debug, | 628 b_v8_linux64_custom_snapshot_debug, |
| 619 b_v8_linux64_debug_avx2, | 629 b_v8_linux64_debug_avx2, |
| 620 b_v8_win32_builder, | 630 b_v8_win32_builder, |
| 621 b_v8_win32_debug_builder, | 631 b_v8_win32_debug_builder, |
| 622 b_v8_win32, | 632 b_v8_win32, |
| 623 b_v8_win32_nosnap_shared, | 633 b_v8_win32_nosnap_shared, |
| 624 b_v8_win32_debug, | 634 b_v8_win32_debug, |
| 625 b_v8_win64, | 635 b_v8_win64, |
| 626 b_v8_win64_debug, | 636 b_v8_win64_debug, |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 # too low. Must keep at least a few days worth of builds. | 701 # too low. Must keep at least a few days worth of builds. |
| 692 c['buildHorizon'] = 1000 | 702 c['buildHorizon'] = 1000 |
| 693 c['logHorizon'] = 500 | 703 c['logHorizon'] = 500 |
| 694 # Must be at least 2x the number of slaves. | 704 # Must be at least 2x the number of slaves. |
| 695 c['eventHorizon'] = 200 | 705 c['eventHorizon'] = 200 |
| 696 | 706 |
| 697 ####### PROJECT IDENTITY | 707 ####### PROJECT IDENTITY |
| 698 | 708 |
| 699 c['projectName'] = ActiveMaster.project_name | 709 c['projectName'] = ActiveMaster.project_name |
| 700 c['projectURL'] = config.Master.project_url | 710 c['projectURL'] = config.Master.project_url |
| OLD | NEW |