| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from master import gatekeeper | 5 from master import gatekeeper |
| 6 from master import master_utils | 6 from master import master_utils |
| 7 | 7 |
| 8 # This is the list of the builder categories and the corresponding critical | 8 # This is the list of the builder categories and the corresponding critical |
| 9 # steps. If one critical step fails, gatekeeper will close the tree | 9 # steps. If one critical step fails, gatekeeper will close the tree |
| 10 # automatically. | 10 # automatically. |
| 11 # Note: don't include 'update scripts' since we can't do much about it when | 11 # Note: don't include 'update scripts' since we can't do much about it when |
| 12 # it's failing and the tree is still technically fine. | 12 # it's failing and the tree is still technically fine. |
| 13 categories_steps = { | 13 categories_steps = { |
| 14 '': ['update'], | 14 '': ['update'], |
| 15 'testers': [ | 15 'testers': [ |
| 16 'start_crash_handler', | 16 'start_crash_handler', |
| 17 'sizes', | 17 'sizes', |
| 18 # Unit tests | 18 # Unit tests |
| 19 'app_unittests', | |
| 20 'base_unittests', | 19 'base_unittests', |
| 21 #'browser_tests', | 20 #'browser_tests', |
| 22 'cacheinvalidation_unittests', | 21 'cacheinvalidation_unittests', |
| 23 'courgette_unittests', | 22 'courgette_unittests', |
| 24 'crypto_unittests', | 23 'crypto_unittests', |
| 25 'googleurl_unittests', | 24 'googleurl_unittests', |
| 26 #'interactive_ui_tests', | 25 #'interactive_ui_tests', |
| 27 'ipc_tests', | 26 'ipc_tests', |
| 28 'installer_util_unittests', | 27 'installer_util_unittests', |
| 29 'jingle_unittests', | 28 'jingle_unittests', |
| 30 'media_unittests', | 29 'media_unittests', |
| 31 'mini_installer_test', | 30 'mini_installer_test', |
| 32 'nacl_ui_tests', | 31 'nacl_ui_tests', |
| 33 'nacl_integration', | 32 'nacl_integration', |
| 34 'nacl_sandbox_tests', | 33 'nacl_sandbox_tests', |
| 35 'net_unittests', | 34 'net_unittests', |
| 36 'plugin_tests', | 35 'plugin_tests', |
| 37 'printing_unittests', | 36 'printing_unittests', |
| 38 'remoting_unittests', | 37 'remoting_unittests', |
| 39 'sbox_unittests', | 38 'sbox_unittests', |
| 40 'sbox_integration_tests', | 39 'sbox_integration_tests', |
| 41 'sbox_validation_tests', | 40 'sbox_validation_tests', |
| 42 'selenium_tests', | 41 'selenium_tests', |
| 42 'sql_unittests', |
| 43 'test_shell_tests', | 43 'test_shell_tests', |
| 44 'unit_tests', | 44 'unit_tests', |
| 45 #'ui_tests', | 45 #'ui_tests', |
| 46 #'webkit_tests', | 46 #'webkit_tests', |
| 47 ], | 47 ], |
| 48 'windows': ['svnkill', 'taskkill'], | 48 'windows': ['svnkill', 'taskkill'], |
| 49 'compile': ['check_deps', 'compile', 'archive_build'] | 49 'compile': ['check_deps', 'compile', 'archive_build'] |
| 50 } | 50 } |
| 51 | 51 |
| 52 exclusions = { | 52 exclusions = { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 63 categories_steps=categories_steps, | 63 categories_steps=categories_steps, |
| 64 exclusions=exclusions, | 64 exclusions=exclusions, |
| 65 relayhost=config.Master.smtp, | 65 relayhost=config.Master.smtp, |
| 66 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 66 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
| 67 'revision %(revision)s', | 67 'revision %(revision)s', |
| 68 extraRecipients=active_master.tree_closing_notification_recipients, | 68 extraRecipients=active_master.tree_closing_notification_recipients, |
| 69 lookup=master_utils.FilterDomain(), | 69 lookup=master_utils.FilterDomain(), |
| 70 forgiving_steps=forgiving_steps, | 70 forgiving_steps=forgiving_steps, |
| 71 tree_status_url=active_master.tree_status_url, | 71 tree_status_url=active_master.tree_status_url, |
| 72 use_getname=True)) | 72 use_getname=True)) |
| OLD | NEW |