Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: masters/master.chromium.win/master_gatekeeper_cfg.py

Issue 111363002: Add chromedriver_unittests to masters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 'app_list_unittests', 16 'app_list_unittests',
17 'ash_unittests', 17 'ash_unittests',
18 'aura_unittests', 18 'aura_unittests',
19 'base_unittests', 19 'base_unittests',
20 'browser_tests', 20 'browser_tests',
21 'cacheinvalidation_unittests', 21 'cacheinvalidation_unittests',
22 'cc_unittests', 22 'cc_unittests',
23 'chromedriver_unittests',
23 'chromedriver2_unittests', 24 'chromedriver2_unittests',
24 'components_unittests', 25 'components_unittests',
25 'compositor_unittests', 26 'compositor_unittests',
26 'content_browsertests', 27 'content_browsertests',
27 'content_unittests', 28 'content_unittests',
28 'courgette_unittests', 29 'courgette_unittests',
29 'crypto_unittests', 30 'crypto_unittests',
30 'device_unittests', 31 'device_unittests',
31 'events_unittests', 32 'events_unittests',
32 'google_apis_unittests', 33 'google_apis_unittests',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 relayhost=config.Master.smtp, 94 relayhost=config.Master.smtp,
94 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' 95 subject='buildbot %(result)s in %(projectName)s on %(builder)s, '
95 'revision %(revision)s', 96 'revision %(revision)s',
96 sheriffs=None, 97 sheriffs=None,
97 extraRecipients=['nacl-broke@google.com'], 98 extraRecipients=['nacl-broke@google.com'],
98 lookup=master_utils.FilterDomain(), 99 lookup=master_utils.FilterDomain(),
99 forgiving_steps=forgiving_steps, 100 forgiving_steps=forgiving_steps,
100 tree_status_url=None, 101 tree_status_url=None,
101 public_html='../master.chromium/public_html', 102 public_html='../master.chromium/public_html',
102 use_getname=True)) 103 use_getname=True))
OLDNEW
« no previous file with comments | « masters/master.chromium.webkit/master_win_latest_cfg.py ('k') | masters/master.chromium.win/master_win_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698