Chromium Code Reviews| 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 import svnpoller | 6 from buildbot.changes import svnpoller |
| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 144 'Ozone ECS Linux', | 144 'Ozone ECS Linux', |
| 145 'Linux Trusty', | 145 'Linux Trusty', |
| 146 'Linux Trusty (32)', | 146 'Linux Trusty (32)', |
| 147 'Linux Trusty (dbg)', | 147 'Linux Trusty (dbg)', |
| 148 'Linux Trusty (dbg)(32)', | 148 'Linux Trusty (dbg)(32)', |
| 149 ] + [ | 149 ] + [ |
| 150 'Chromium Win Aura Ash (%d)' % shard | 150 'Chromium Win Aura Ash (%d)' % shard |
| 151 for shard in range(1, ASH_SHARDS+1) | 151 for shard in range(1, ASH_SHARDS+1) |
| 152 ]) | 152 ]) |
| 153 | 153 |
| 154 # Triggerable scheduler for Windows Release. | 154 # Triggerable scheduler for Windows Release. |
|
Paweł Hajdan Jr.
2014/06/04 10:35:41
Please use solution similar to this to get the new
| |
| 155 s_chromium_win_rel = Triggerable( | 155 s_chromium_win_rel = Triggerable( |
| 156 name='win_rel', | 156 name='win_rel', |
| 157 builderNames=['Chromium Win MiniInstaller Tests', | 157 builderNames=['Chromium Win MiniInstaller Tests', |
| 158 'More NaCl Tests (win32)', | 158 'More NaCl Tests (win32)', |
| 159 'More NaCl Tests (win64)', | 159 'More NaCl Tests (win64)', |
| 160 'Win8 Tests (1)', | 160 'Win8 Tests (1)', |
| 161 'Win8 Tests (2)', | 161 'Win8 Tests (2)', |
| 162 'Windows Tests (Memory benchmark)']) | 162 'Windows Tests (Memory benchmark)']) |
| 163 | 163 |
| 164 # Triggerable scheduler for Windows Debug. | 164 # Triggerable scheduler for Windows Debug. |
| (...skipping 1312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1477 'auto_reboot': True, | 1477 'auto_reboot': True, |
| 1478 } | 1478 } |
| 1479 | 1479 |
| 1480 b_chromium_rel_linux_msan = { | 1480 b_chromium_rel_linux_msan = { |
| 1481 'name': 'Chromium Linux MSan', | 1481 'name': 'Chromium Linux MSan', |
| 1482 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), | 1482 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), |
| 1483 'category': 'msan', | 1483 'category': 'msan', |
| 1484 'auto_reboot': True, | 1484 'auto_reboot': True, |
| 1485 } | 1485 } |
| 1486 | 1486 |
| 1487 b_chromium_rel_linux_msan_browser = { | |
| 1488 'name': 'Chromium Linux MSan (browser tests)', | |
| 1489 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), | |
| 1490 'category': 'msan', | |
| 1491 'auto_reboot': True, | |
| 1492 } | |
| 1493 | |
| 1487 b_chromium_rel_win32_morenacl = { | 1494 b_chromium_rel_win32_morenacl = { |
| 1488 'name': 'More NaCl Tests (win32)', | 1495 'name': 'More NaCl Tests (win32)', |
| 1489 'builddir': 'chromium-rel-win32-morenacl', | 1496 'builddir': 'chromium-rel-win32-morenacl', |
| 1490 'factory': f_chromium_rel_win_morenacl, | 1497 'factory': f_chromium_rel_win_morenacl, |
| 1491 'category': 'morenacl', | 1498 'category': 'morenacl', |
| 1492 'auto_reboot': False, | 1499 'auto_reboot': False, |
| 1493 } | 1500 } |
| 1494 | 1501 |
| 1495 b_chromium_rel_win64_morenacl = { | 1502 b_chromium_rel_win64_morenacl = { |
| 1496 'name': 'More NaCl Tests (win64)', | 1503 'name': 'More NaCl Tests (win64)', |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2148 # iOS | 2155 # iOS |
| 2149 b_chromium_dbg_ios_simulator, | 2156 b_chromium_dbg_ios_simulator, |
| 2150 b_chromium_rel_ios_device, | 2157 b_chromium_rel_ios_device, |
| 2151 b_chromium_rel_ninja_ios_device, | 2158 b_chromium_rel_ninja_ios_device, |
| 2152 | 2159 |
| 2153 # LSan | 2160 # LSan |
| 2154 b_chromium_rel_linux_lsan_asan, | 2161 b_chromium_rel_linux_lsan_asan, |
| 2155 | 2162 |
| 2156 # MSan | 2163 # MSan |
| 2157 b_chromium_rel_linux_msan, | 2164 b_chromium_rel_linux_msan, |
| 2165 b_chromium_rel_linux_msan_browser, | |
| 2158 | 2166 |
| 2159 # NaCl | 2167 # NaCl |
| 2160 b_chromium_rel_win32_morenacl, | 2168 b_chromium_rel_win32_morenacl, |
| 2161 b_chromium_rel_win64_morenacl, | 2169 b_chromium_rel_win64_morenacl, |
| 2162 b_chromium_rel_mac_morenacl, | 2170 b_chromium_rel_mac_morenacl, |
| 2163 b_chromium_rel_linux_morenacl, | 2171 b_chromium_rel_linux_morenacl, |
| 2164 | 2172 |
| 2165 # Memory | 2173 # Memory |
| 2166 b_chromium_rel_win_memory_measurement, | 2174 b_chromium_rel_win_memory_measurement, |
| 2167 | 2175 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2320 | 2328 |
| 2321 c['status'].append(MailNotifier( | 2329 c['status'].append(MailNotifier( |
| 2322 fromaddr='ukai@chromium.org', # Reply-To address | 2330 fromaddr='ukai@chromium.org', # Reply-To address |
| 2323 mode='failing', | 2331 mode='failing', |
| 2324 categories=['goma'], | 2332 categories=['goma'], |
| 2325 relayhost=config.Master.smtp, | 2333 relayhost=config.Master.smtp, |
| 2326 subject='goma canary buildbot %(result)s in %(projectName)s ' | 2334 subject='goma canary buildbot %(result)s in %(projectName)s ' |
| 2327 'on %(builder)s', | 2335 'on %(builder)s', |
| 2328 extraRecipients=['goma+alert@google.com'], | 2336 extraRecipients=['goma+alert@google.com'], |
| 2329 sendToInterestedUsers=False)) | 2337 sendToInterestedUsers=False)) |
| OLD | NEW |