| OLD | NEW |
| 1 # vim: ft=python: | 1 # vim: ft=python: |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 from buildbot.changes.filter import ChangeFilter | 6 from buildbot.changes.filter import ChangeFilter |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 'Chromium Linux Precise Goma LinkTest', | 147 'Chromium Linux Precise Goma LinkTest', |
| 148 'Chromium Linux32 Goma Canary (clobber)', | 148 'Chromium Linux32 Goma Canary (clobber)', |
| 149 'Chromium Mac 10.6 Goma Canary', | 149 'Chromium Mac 10.6 Goma Canary', |
| 150 'Chromium Mac 10.7 Goma Canary', | 150 'Chromium Mac 10.7 Goma Canary', |
| 151 'Chromium Mac 10.6 Goma Canary (clobber)', | 151 'Chromium Mac 10.6 Goma Canary (clobber)', |
| 152 'Chromium Mac 10.7 Goma Canary (clobber)', | 152 'Chromium Mac 10.7 Goma Canary (clobber)', |
| 153 'Chromium Mac 10.10', | 153 'Chromium Mac 10.10', |
| 154 'Windows 8 App Certification', | 154 'Windows 8 App Certification', |
| 155 'ChromiumOS Linux Tests', | 155 'ChromiumOS Linux Tests', |
| 156 'Ozone ECS Linux', | 156 'Ozone ECS Linux', |
| 157 'Linux ARM', | |
| 158 'Linux ARM Cross-Compile', | 157 'Linux ARM Cross-Compile', |
| 159 'Linux Trusty', | 158 'Linux Trusty', |
| 160 'Linux Trusty (32)', | 159 'Linux Trusty (32)', |
| 161 'Linux Trusty (dbg)', | 160 'Linux Trusty (dbg)', |
| 162 'Linux Trusty (dbg)(32)', | 161 'Linux Trusty (dbg)(32)', |
| 163 'Print Preview Linux', | 162 'Print Preview Linux', |
| 164 'Print Preview Mac', | 163 'Print Preview Mac', |
| 165 'Print Preview Win', | 164 'Print Preview Win', |
| 166 'Site Isolation Linux', | 165 'Site Isolation Linux', |
| 167 'Site Isolation Win', | 166 'Site Isolation Win', |
| (...skipping 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1531 'factory': f_chromium_mac_1010, | 1530 'factory': f_chromium_mac_1010, |
| 1532 'auto_reboot': True, | 1531 'auto_reboot': True, |
| 1533 } | 1532 } |
| 1534 | 1533 |
| 1535 b_windows_8_app_certification = { | 1534 b_windows_8_app_certification = { |
| 1536 'name': 'Windows 8 App Certification', | 1535 'name': 'Windows 8 App Certification', |
| 1537 'factory': f_windows_8_app_certification, | 1536 'factory': f_windows_8_app_certification, |
| 1538 'category': 'windows', | 1537 'category': 'windows', |
| 1539 } | 1538 } |
| 1540 | 1539 |
| 1541 b_linux_arm = { | |
| 1542 'name': 'Linux ARM', | |
| 1543 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), | |
| 1544 'category': 'linux', | |
| 1545 'auto_reboot': False, | |
| 1546 } | |
| 1547 | |
| 1548 b_linux_arm_cross_compile = { | 1540 b_linux_arm_cross_compile = { |
| 1549 'name': 'Linux ARM Cross-Compile', | 1541 'name': 'Linux ARM Cross-Compile', |
| 1550 'factory': annotator_factory.AnnotatorFactory().BaseFactory( | 1542 'factory': annotator_factory.AnnotatorFactory().BaseFactory( |
| 1551 'chromium', | 1543 'chromium', |
| 1552 {'use_mirror': ActiveMaster.is_production_host or None}, | 1544 {'use_mirror': ActiveMaster.is_production_host or None}, |
| 1553 triggers=['chromium_linux_arm']), | 1545 triggers=['chromium_linux_arm']), |
| 1554 'category': 'linux', | 1546 'category': 'linux', |
| 1555 'auto_reboot': False, | 1547 'auto_reboot': False, |
| 1556 } | 1548 } |
| 1557 | 1549 |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1848 b_chromium_mac_10_9_buildrunner, | 1840 b_chromium_mac_10_9_buildrunner, |
| 1849 | 1841 |
| 1850 # Linux BuilderTesters | 1842 # Linux BuilderTesters |
| 1851 b_chromium_linux_goma_canary, | 1843 b_chromium_linux_goma_canary, |
| 1852 b_chromium_linux_goma_canary_clobber, | 1844 b_chromium_linux_goma_canary_clobber, |
| 1853 b_chromium_linux_precise_goma_linktest, | 1845 b_chromium_linux_precise_goma_linktest, |
| 1854 b_chromium_linux32_goma_canary_clobber, | 1846 b_chromium_linux32_goma_canary_clobber, |
| 1855 b_chromiumos_linux_tests, | 1847 b_chromiumos_linux_tests, |
| 1856 | 1848 |
| 1857 # Linux ARM | 1849 # Linux ARM |
| 1858 b_linux_arm, | |
| 1859 b_linux_arm_cross_compile, | 1850 b_linux_arm_cross_compile, |
| 1860 b_linux_arm_tests_panda, | 1851 b_linux_arm_tests_panda, |
| 1861 | 1852 |
| 1862 # Android | 1853 # Android |
| 1863 b_chromium_dbg_android_builder, | 1854 b_chromium_dbg_android_builder, |
| 1864 b_chromium_dbg_android_mips_builder, | 1855 b_chromium_dbg_android_mips_builder, |
| 1865 b_chromium_dbg_android_x86_builder, | 1856 b_chromium_dbg_android_x86_builder, |
| 1866 b_chromium_dbg_android_tests_l_n5_user, | 1857 b_chromium_dbg_android_tests_l_n5_user, |
| 1867 b_chromium_dbg_android_tests_k_n5_user, | 1858 b_chromium_dbg_android_tests_k_n5_user, |
| 1868 b_chromium_dbg_android_tests_amp, | 1859 b_chromium_dbg_android_tests_amp, |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2099 c['status'].append(MailNotifier( | 2090 c['status'].append(MailNotifier( |
| 2100 fromaddr=ActiveMaster.from_address, # Reply-To address | 2091 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 2101 mode='failing', | 2092 mode='failing', |
| 2102 relayhost=config.Master.smtp, | 2093 relayhost=config.Master.smtp, |
| 2103 subject='Remoting Android Tests failing on %(builder)s', | 2094 subject='Remoting Android Tests failing on %(builder)s', |
| 2104 extraRecipients=[ | 2095 extraRecipients=[ |
| 2105 'remoting-android-test-results@google.com', | 2096 'remoting-android-test-results@google.com', |
| 2106 ], | 2097 ], |
| 2107 sendToInterestedUsers=False, | 2098 sendToInterestedUsers=False, |
| 2108 builders=['Android Remoting Tests'])) | 2099 builders=['Android Remoting Tests'])) |
| OLD | NEW |