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', 'runhooks'], | 14 '': ['update', 'runhooks'], |
15 'testers': [ | 15 'testers': [ |
16 'ash_unittests', | 16 'ash_unittests', |
17 'base_unittests', | 17 'base_unittests', |
18 'browser_tests', | 18 'browser_tests', |
19 'cacheinvalidation_unittests', | 19 'cacheinvalidation_unittests', |
20 'chrome_frame_net_tests', | |
21 'content_browsertests', | 20 'content_browsertests', |
22 'content_unittests', | 21 'content_unittests', |
23 'courgette_unittests', | 22 'courgette_unittests', |
24 'crypto_unittests', | 23 'crypto_unittests', |
25 'device_unittests', | 24 'device_unittests', |
26 'installer_util_unittests', | 25 'installer_util_unittests', |
27 'interactive_ui_tests', | 26 'interactive_ui_tests', |
28 'ipc_tests', | 27 'ipc_tests', |
29 'jingle_unittests', | 28 'jingle_unittests', |
30 'media_unittests', | 29 'media_unittests', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 exclusions=exclusions, | 87 exclusions=exclusions, |
89 relayhost=config.Master.smtp, | 88 relayhost=config.Master.smtp, |
90 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 89 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
91 'revision %(revision)s', | 90 'revision %(revision)s', |
92 sheriffs=None, | 91 sheriffs=None, |
93 extraRecipients=['nacl-broke@google.com'], | 92 extraRecipients=['nacl-broke@google.com'], |
94 lookup=master_utils.FilterDomain(), | 93 lookup=master_utils.FilterDomain(), |
95 forgiving_steps=forgiving_steps, | 94 forgiving_steps=forgiving_steps, |
96 tree_status_url=None, | 95 tree_status_url=None, |
97 use_getname=True)) | 96 use_getname=True)) |
OLD | NEW |