| 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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 | 259 |
| 260 # the first BuildStep is typically responsible for obtaining a copy of the | 260 # the first BuildStep is typically responsible for obtaining a copy of the |
| 261 # sources. There are source-obtaining Steps in buildbot/process/step.py for | 261 # sources. There are source-obtaining Steps in buildbot/process/step.py for |
| 262 # CVS, SVN, and others. | 262 # CVS, SVN, and others. |
| 263 | 263 |
| 264 builders = [] | 264 builders = [] |
| 265 | 265 |
| 266 # ---------------------------------------------------------------------------- | 266 # ---------------------------------------------------------------------------- |
| 267 # FACTORIES | 267 # FACTORIES |
| 268 | 268 |
| 269 F_RECIPE_MISC = annotator_factory.AnnotatorFactory().BaseFactory( | |
| 270 recipe='chromium.fyi.misc_block.recipe_autogen') | |
| 271 | |
| 272 chromium_rel_archive = master_config.GetGSUtilUrl( | 269 chromium_rel_archive = master_config.GetGSUtilUrl( |
| 273 'chromium-build-transfer', 'Chromium FYI Builder') | 270 'chromium-build-transfer', 'Chromium FYI Builder') |
| 274 | 271 |
| 275 chromium_dbg_archive = master_config.GetGSUtilUrl( | 272 chromium_dbg_archive = master_config.GetGSUtilUrl( |
| 276 'chromium-build-transfer', 'Chromium FYI Builder (dbg)') | 273 'chromium-build-transfer', 'Chromium FYI Builder (dbg)') |
| 277 | 274 |
| 278 chromium_windows_drmemory_archive = master_config.GetGSUtilUrl( | 275 chromium_windows_drmemory_archive = master_config.GetGSUtilUrl( |
| 279 'chromium-build-transfer', 'drm-cr') | 276 'chromium-build-transfer', 'drm-cr') |
| 280 | 277 |
| 281 chromium_android_fyi_dbg_archive = master_config.GetGSUtilUrl( | 278 chromium_android_fyi_dbg_archive = master_config.GetGSUtilUrl( |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 } | 841 } |
| 845 | 842 |
| 846 b_chromium_dbg_android_tests_trial = { | 843 b_chromium_dbg_android_tests_trial = { |
| 847 'name': 'Android Tests (trial)(dbg)', | 844 'name': 'Android Tests (trial)(dbg)', |
| 848 'factory': m_annotator.BaseFactory(recipe='chromium'), | 845 'factory': m_annotator.BaseFactory(recipe='chromium'), |
| 849 'category': 'android_tests', | 846 'category': 'android_tests', |
| 850 } | 847 } |
| 851 | 848 |
| 852 b_chromium_dbg_android_chromedriver_tests = { | 849 b_chromium_dbg_android_chromedriver_tests = { |
| 853 'name': 'Android ChromeDriver Tests (dbg)', | 850 'name': 'Android ChromeDriver Tests (dbg)', |
| 854 'factory': F_RECIPE_MISC, | 851 'factory': annotator_factory.AnnotatorFactory().BaseFactory( |
| 852 recipe='chromedriver'), |
| 855 'category': 'android_tests', | 853 'category': 'android_tests', |
| 856 } | 854 } |
| 857 | 855 |
| 858 b_chromium_dbg_android_cloud_tests = { | 856 b_chromium_dbg_android_cloud_tests = { |
| 859 'name': 'Android Cloud Tests', | 857 'name': 'Android Cloud Tests', |
| 860 'factory': m_annotator.BaseFactory(recipe='chromium'), | 858 'factory': m_annotator.BaseFactory(recipe='chromium'), |
| 861 'category': 'android_tests', | 859 'category': 'android_tests', |
| 862 } | 860 } |
| 863 | 861 |
| 864 b_chromium_linux_goma_canary = { | 862 b_chromium_linux_goma_canary = { |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1449 ])) | 1447 ])) |
| 1450 | 1448 |
| 1451 c['status'].append(MailNotifier( | 1449 c['status'].append(MailNotifier( |
| 1452 fromaddr=ActiveMaster.from_address, # Reply-To address | 1450 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1453 mode='failing', | 1451 mode='failing', |
| 1454 relayhost=config.Master.smtp, | 1452 relayhost=config.Master.smtp, |
| 1455 subject='Build failure on %(builder)s', | 1453 subject='Build failure on %(builder)s', |
| 1456 extraRecipients=['sbc@chromium.org'], | 1454 extraRecipients=['sbc@chromium.org'], |
| 1457 sendToInterestedUsers=False, | 1455 sendToInterestedUsers=False, |
| 1458 builders=['Linux ARM'])) | 1456 builders=['Linux ARM'])) |
| OLD | NEW |