| 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 'ash_unittests', |
| 17 'aura_unittests', |
| 16 'base_unittests', | 18 'base_unittests', |
| 17 'browser_tests', | 19 'browser_tests', |
| 18 'cacheinvalidation_unittests', | 20 'cacheinvalidation_unittests', |
| 19 'cc_unittests', | 21 'cc_unittests', |
| 20 'chrome_frame_net_tests', | 22 'chrome_frame_net_tests', |
| 21 'chromedriver2_unittests', | 23 'chromedriver2_unittests', |
| 24 'compositor_unittests', |
| 22 'content_browsertests', | 25 'content_browsertests', |
| 23 'content_unittests', | 26 'content_unittests', |
| 24 'courgette_unittests', | 27 'courgette_unittests', |
| 25 'crypto_unittests', | 28 'crypto_unittests', |
| 26 'device_unittests', | 29 'device_unittests', |
| 27 'googleurl_unittests', | 30 'googleurl_unittests', |
| 28 'installer_util_unittests', | 31 'installer_util_unittests', |
| 29 'interactive_ui_tests', | 32 'interactive_ui_tests', |
| 30 'ipc_tests', | 33 'ipc_tests', |
| 31 'jingle_unittests', | 34 'jingle_unittests', |
| 32 'media_unittests', | 35 'media_unittests', |
| 33 'mini_installer_test', | 36 'mini_installer_test', |
| 34 'nacl_integration', | 37 'nacl_integration', |
| 35 'net_unittests', | 38 'net_unittests', |
| 36 'ppapi_unittests', | 39 'ppapi_unittests', |
| 37 'printing_unittests', | 40 'printing_unittests', |
| 38 'remoting_unittests', | 41 'remoting_unittests', |
| 39 'sandbox_linux_unittests', | 42 'sandbox_linux_unittests', |
| 40 'sbox_integration_tests', | 43 'sbox_integration_tests', |
| 41 'sbox_unittests', | 44 'sbox_unittests', |
| 42 'sbox_validation_tests', | 45 'sbox_validation_tests', |
| 43 'sizes', | 46 'sizes', |
| 44 'sql_unittests', | 47 'sql_unittests', |
| 45 'start_crash_handler', | 48 'start_crash_handler', |
| 46 'sync_unit_tests', | 49 'sync_unit_tests', |
| 47 'sync_integration_tests', | 50 'sync_integration_tests', |
| 48 'test_shell_tests', | 51 'test_shell_tests', |
| 49 'unit_tests', | 52 'unit_tests', |
| 53 'views_unittests', |
| 50 'webkit_compositor_bindings_unittests', | 54 'webkit_compositor_bindings_unittests', |
| 51 #'webkit_tests', | 55 #'webkit_tests', |
| 52 ], | 56 ], |
| 53 'windows': ['svnkill', 'taskkill'], | 57 'windows': ['svnkill', 'taskkill'], |
| 54 'compile': ['check_deps2git', 'check_deps', 'compile', 'archive_build'], | 58 'compile': ['check_deps2git', 'check_deps', 'compile', 'archive_build'], |
| 55 # Annotator scripts are triggered as a 'build' step. | 59 # Annotator scripts are triggered as a 'build' step. |
| 56 # The gatekeeper currently does not recognize failure in a | 60 # The gatekeeper currently does not recognize failure in a |
| 57 # @@@BUILD_STEP@@@, so we must match on the buildbot-defined step. | 61 # @@@BUILD_STEP@@@, so we must match on the buildbot-defined step. |
| 58 'android': ['build'], | 62 'android': ['build'], |
| 59 } | 63 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 87 relayhost=config.Master.smtp, | 91 relayhost=config.Master.smtp, |
| 88 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 92 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
| 89 'revision %(revision)s', | 93 'revision %(revision)s', |
| 90 sheriffs=None, | 94 sheriffs=None, |
| 91 extraRecipients=['nacl-broke@google.com'], | 95 extraRecipients=['nacl-broke@google.com'], |
| 92 lookup=master_utils.FilterDomain(), | 96 lookup=master_utils.FilterDomain(), |
| 93 forgiving_steps=forgiving_steps, | 97 forgiving_steps=forgiving_steps, |
| 94 tree_status_url=None, | 98 tree_status_url=None, |
| 95 public_html='../master.chromium/public_html', | 99 public_html='../master.chromium/public_html', |
| 96 use_getname=True)) | 100 use_getname=True)) |
| OLD | NEW |