| 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 # TODO(glider): browser_tests and content_browsertests timeouts have become | 13 # TODO(glider): browser_tests and content_browsertests timeouts have become |
| 14 # annoying since the number of bots increased. Disable them until the failure | 14 # annoying since the number of bots increased. Disable them until the failure |
| 15 # rate drops. | 15 # rate drops. |
| 16 categories_steps = { | 16 categories_steps = { |
| 17 '': ['update'], | 17 '': ['update'], |
| 18 'testers': [ | 18 'testers': [ |
| 19 'base_unittests', | 19 'base_unittests', |
| 20 #'browser_tests', | 20 #'browser_tests', |
| 21 'cacheinvalidation_unittests', | 21 'cacheinvalidation_unittests', |
| 22 'components_unittests', |
| 22 #'content_browsertests', | 23 #'content_browsertests', |
| 23 'content_unittests', | 24 'content_unittests', |
| 24 'courgette_unittests', | 25 'courgette_unittests', |
| 25 'crypto_unittests', | 26 'crypto_unittests', |
| 26 'device_unittests', | 27 'device_unittests', |
| 27 'googleurl_unittests', | 28 'googleurl_unittests', |
| 28 'ipc_tests', | 29 'ipc_tests', |
| 29 'installer_util_unittests', | 30 'installer_util_unittests', |
| 30 'jingle_unittests', | 31 'jingle_unittests', |
| 31 'media_unittests', | 32 'media_unittests', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 55 relayhost=config.Master.smtp, | 56 relayhost=config.Master.smtp, |
| 56 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 57 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
| 57 'revision %(revision)s', | 58 'revision %(revision)s', |
| 58 extraRecipients=active_master.tree_closing_notification_recipients, | 59 extraRecipients=active_master.tree_closing_notification_recipients, |
| 59 lookup=master_utils.FilterDomain(), | 60 lookup=master_utils.FilterDomain(), |
| 60 forgiving_steps=forgiving_steps, | 61 forgiving_steps=forgiving_steps, |
| 61 public_html='../master.chromium/public_html', | 62 public_html='../master.chromium/public_html', |
| 62 sheriffs=['sheriff'], | 63 sheriffs=['sheriff'], |
| 63 tree_status_url=active_master.tree_status_url, | 64 tree_status_url=active_master.tree_status_url, |
| 64 use_getname=True)) | 65 use_getname=True)) |
| OLD | NEW |