| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'aura_unittests', |
| 16 'base_unittests', | 17 'base_unittests', |
| 17 'browser_tests', | 18 'browser_tests', |
| 18 'cacheinvalidation_unittests', | 19 'cacheinvalidation_unittests', |
| 19 'cc_unittests', | 20 'cc_unittests', |
| 20 'chrome_frame_net_tests', | 21 'chrome_frame_net_tests', |
| 21 'chromedriver2_unittests', | 22 'chromedriver2_unittests', |
| 23 'compositor_unittests', |
| 22 'content_browsertests', | 24 'content_browsertests', |
| 23 'content_unittests', | 25 'content_unittests', |
| 24 'courgette_unittests', | 26 'courgette_unittests', |
| 25 'crypto_unittests', | 27 'crypto_unittests', |
| 26 'device_unittests', | 28 'device_unittests', |
| 27 'googleurl_unittests', | 29 'googleurl_unittests', |
| 28 'installer_util_unittests', | 30 'installer_util_unittests', |
| 29 'interactive_ui_tests', | 31 'interactive_ui_tests', |
| 30 'ipc_tests', | 32 'ipc_tests', |
| 31 'jingle_unittests', | 33 'jingle_unittests', |
| 32 'media_unittests', | 34 'media_unittests', |
| 33 'mini_installer_test', | 35 'mini_installer_test', |
| 34 'nacl_integration', | 36 'nacl_integration', |
| 35 'net_unittests', | 37 'net_unittests', |
| 36 'ppapi_unittests', | 38 'ppapi_unittests', |
| 37 'printing_unittests', | 39 'printing_unittests', |
| 38 'remoting_unittests', | 40 'remoting_unittests', |
| 39 'sandbox_linux_unittests', | 41 'sandbox_linux_unittests', |
| 40 'sbox_integration_tests', | 42 'sbox_integration_tests', |
| 41 'sbox_unittests', | 43 'sbox_unittests', |
| 42 'sbox_validation_tests', | 44 'sbox_validation_tests', |
| 43 'sizes', | 45 'sizes', |
| 44 'sql_unittests', | 46 'sql_unittests', |
| 45 'start_crash_handler', | 47 'start_crash_handler', |
| 46 'sync_unit_tests', | 48 'sync_unit_tests', |
| 47 'sync_integration_tests', | 49 'sync_integration_tests', |
| 48 'test_shell_tests', | 50 'test_shell_tests', |
| 49 'unit_tests', | 51 'unit_tests', |
| 52 'views_unittests', |
| 50 'webkit_compositor_bindings_unittests', | 53 'webkit_compositor_bindings_unittests', |
| 51 #'webkit_tests', | 54 #'webkit_tests', |
| 52 ], | 55 ], |
| 53 'windows': ['svnkill', 'taskkill'], | 56 'windows': ['svnkill', 'taskkill'], |
| 54 'compile': ['check_deps2git', 'check_deps', 'compile', 'archive_build'], | 57 'compile': ['check_deps2git', 'check_deps', 'compile', 'archive_build'], |
| 55 # Annotator scripts are triggered as a 'build' step. | 58 # Annotator scripts are triggered as a 'build' step. |
| 56 # The gatekeeper currently does not recognize failure in a | 59 # The gatekeeper currently does not recognize failure in a |
| 57 # @@@BUILD_STEP@@@, so we must match on the buildbot-defined step. | 60 # @@@BUILD_STEP@@@, so we must match on the buildbot-defined step. |
| 58 'android': ['build'], | 61 'android': ['build'], |
| 59 } | 62 } |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 107 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
| 105 'revision %(revision)s', | 108 'revision %(revision)s', |
| 106 # sheriffs=['sheriff_android'], | 109 # sheriffs=['sheriff_android'], |
| 107 sheriffs=None, | 110 sheriffs=None, |
| 108 extraRecipients=['cmp@google.com', 'ilevy@google.com'], | 111 extraRecipients=['cmp@google.com', 'ilevy@google.com'], |
| 109 lookup=master_utils.FilterDomain(), | 112 lookup=master_utils.FilterDomain(), |
| 110 forgiving_steps=forgiving_steps, | 113 forgiving_steps=forgiving_steps, |
| 111 tree_status_url=None, | 114 tree_status_url=None, |
| 112 public_html='../master.chromium/public_html', | 115 public_html='../master.chromium/public_html', |
| 113 use_getname=True)) | 116 use_getname=True)) |
| OLD | NEW |