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. |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 'sql_unittests', | 48 'sql_unittests', |
49 'start_crash_handler', | 49 'start_crash_handler', |
50 'sync_integration_tests', | 50 'sync_integration_tests', |
51 'sync_unit_tests', | 51 'sync_unit_tests', |
52 'unit_tests', | 52 'unit_tests', |
53 'url_unittests', | 53 'url_unittests', |
54 'views_unittests', | 54 'views_unittests', |
55 'webkit_compositor_bindings_unittests', | 55 'webkit_compositor_bindings_unittests', |
56 #'webkit_tests', | 56 #'webkit_tests', |
57 ], | 57 ], |
58 'chrome_frame': [ | |
59 'chrome_frame_net_tests', | |
60 'chrome_frame_tests', | |
61 ], | |
62 'windows': ['svnkill', 'taskkill'], | 58 'windows': ['svnkill', 'taskkill'], |
63 'compile': ['check_deps2git', 'check_deps', 'compile', 'archive_build'], | 59 'compile': ['check_deps2git', 'check_deps', 'compile', 'archive_build'], |
64 # Annotator scripts are triggered as a 'slave_steps' step. | 60 # Annotator scripts are triggered as a 'slave_steps' step. |
65 # The gatekeeper currently does not recognize failure in a | 61 # The gatekeeper currently does not recognize failure in a |
66 # @@@BUILD_STEP@@@, so we must match on the buildbot-defined step. | 62 # @@@BUILD_STEP@@@, so we must match on the buildbot-defined step. |
67 'android': ['slave_steps'], | 63 'android': ['slave_steps'], |
68 } | 64 } |
69 | 65 |
70 exclusions = { | 66 exclusions = { |
71 } | 67 } |
(...skipping 24 matching lines...) Expand all Loading... |
96 relayhost=config.Master.smtp, | 92 relayhost=config.Master.smtp, |
97 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 93 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
98 'revision %(revision)s', | 94 'revision %(revision)s', |
99 sheriffs=None, | 95 sheriffs=None, |
100 extraRecipients=['nacl-broke@google.com'], | 96 extraRecipients=['nacl-broke@google.com'], |
101 lookup=master_utils.FilterDomain(), | 97 lookup=master_utils.FilterDomain(), |
102 forgiving_steps=forgiving_steps, | 98 forgiving_steps=forgiving_steps, |
103 tree_status_url=None, | 99 tree_status_url=None, |
104 public_html='../master.chromium/public_html', | 100 public_html='../master.chromium/public_html', |
105 use_getname=True)) | 101 use_getname=True)) |
OLD | NEW |