| 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.process.properties import WithProperties | 7 from buildbot.process.properties import WithProperties |
| 8 from buildbot.scheduler import Dependent | 8 from buildbot.scheduler import Dependent |
| 9 from buildbot.scheduler import Nightly | 9 from buildbot.scheduler import Nightly |
| 10 from buildbot.scheduler import Periodic | 10 from buildbot.scheduler import Periodic |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'Chromium Mac 10.9 Goma Canary', | 120 'Chromium Mac 10.9 Goma Canary', |
| 121 'Chromium Mac 10.9 Goma Canary (dbg)', | 121 'Chromium Mac 10.9 Goma Canary (dbg)', |
| 122 'Chromium Mac 10.9 Goma Canary (clobber)', | 122 'Chromium Mac 10.9 Goma Canary (clobber)', |
| 123 'Chromium Mac 10.9 Goma Canary (dbg)(clobber)', | 123 'Chromium Mac 10.9 Goma Canary (dbg)(clobber)', |
| 124 'Chromium Mac 10.10 MacViews', | 124 'Chromium Mac 10.10 MacViews', |
| 125 'Chromium Mac 10.11', | 125 'Chromium Mac 10.11', |
| 126 'Chromium Mac 10.11 Force Mac Toolchain', | 126 'Chromium Mac 10.11 Force Mac Toolchain', |
| 127 'Linux ARM', | 127 'Linux ARM', |
| 128 'Linux V8 API Stability', | 128 'Linux V8 API Stability', |
| 129 'Headless Linux (dbg)', | 129 'Headless Linux (dbg)', |
| 130 'Ozone Linux', |
| 130 'Site Isolation Android', | 131 'Site Isolation Android', |
| 131 'Site Isolation Linux', | 132 'Site Isolation Linux', |
| 132 'Site Isolation Win', | 133 'Site Isolation Win', |
| 133 'Browser Side Navigation Linux', | 134 'Browser Side Navigation Linux', |
| 134 'Closure Compilation Linux', | 135 'Closure Compilation Linux', |
| 135 'CFI Linux', | 136 'CFI Linux', |
| 136 'CFI Linux Full', | 137 'CFI Linux Full', |
| 137 'CFI Linux ToT', | 138 'CFI Linux ToT', |
| 138 'CFI Linux CF', | 139 'CFI Linux CF', |
| 139 'LTO Linux', | 140 'LTO Linux', |
| (...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1069 'category': 'linux', | 1070 'category': 'linux', |
| 1070 'auto_reboot': True, | 1071 'auto_reboot': True, |
| 1071 } | 1072 } |
| 1072 | 1073 |
| 1073 b_headless_linux = { | 1074 b_headless_linux = { |
| 1074 'name': 'Headless Linux (dbg)', | 1075 'name': 'Headless Linux (dbg)', |
| 1075 'factory': m_remote_run_chromium_src('chromium'), | 1076 'factory': m_remote_run_chromium_src('chromium'), |
| 1076 'category': 'linux', | 1077 'category': 'linux', |
| 1077 } | 1078 } |
| 1078 | 1079 |
| 1080 b_chromium_ozone_linux = { |
| 1081 'name': 'Ozone Linux', |
| 1082 'factory': m_remote_run_chromium_src('chromium'), |
| 1083 'category': 'linux', |
| 1084 'auto_reboot': True, |
| 1085 } |
| 1086 |
| 1079 b_chromium_site_isolation_android = { | 1087 b_chromium_site_isolation_android = { |
| 1080 'name': 'Site Isolation Android', | 1088 'name': 'Site Isolation Android', |
| 1081 'factory': m_remote_run_chromium_src('chromium'), | 1089 'factory': m_remote_run_chromium_src('chromium'), |
| 1082 'category': 'site_isolation', | 1090 'category': 'site_isolation', |
| 1083 'auto_reboot': True, | 1091 'auto_reboot': True, |
| 1084 } | 1092 } |
| 1085 | 1093 |
| 1086 b_chromium_site_isolation_linux = { | 1094 b_chromium_site_isolation_linux = { |
| 1087 'name': 'Site Isolation Linux', | 1095 'name': 'Site Isolation Linux', |
| 1088 'factory': m_remote_run_chromium_src('chromium'), | 1096 'factory': m_remote_run_chromium_src('chromium'), |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1563 ])) | 1571 ])) |
| 1564 | 1572 |
| 1565 c['status'].append(MailNotifier( | 1573 c['status'].append(MailNotifier( |
| 1566 fromaddr=ActiveMaster.from_address, # Reply-To address | 1574 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1567 mode='failing', | 1575 mode='failing', |
| 1568 relayhost=config.Master.smtp, | 1576 relayhost=config.Master.smtp, |
| 1569 subject='Build failure on %(builder)s', | 1577 subject='Build failure on %(builder)s', |
| 1570 extraRecipients=['sbc@chromium.org'], | 1578 extraRecipients=['sbc@chromium.org'], |
| 1571 sendToInterestedUsers=False, | 1579 sendToInterestedUsers=False, |
| 1572 builders=['Linux ARM'])) | 1580 builders=['Linux ARM'])) |
| OLD | NEW |