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

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

Issue 27296002: Add app_list_unittests as a test step and tree closer on mac, win, and linux_aura. (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/build/
Patch Set: Created 7 years, 2 months 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
« no previous file with comments | « no previous file | masters/master.chromium.linux/master_linux_cfg.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_unittets',
16 'aura_unittests', 17 'aura_unittests',
17 'base_unittests', 18 'base_unittests',
18 'browser_tests', 19 'browser_tests',
19 'cacheinvalidation_unittests', 20 'cacheinvalidation_unittests',
20 'cc_unittests', 21 'cc_unittests',
21 'chrome_frame_net_tests', 22 'chrome_frame_net_tests',
22 'chromedriver2_unittests', 23 'chromedriver2_unittests',
23 'components_unittests', 24 'components_unittests',
24 'compositor_unittests', 25 'compositor_unittests',
25 'content_browsertests', 26 'content_browsertests',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 relayhost=config.Master.smtp, 108 relayhost=config.Master.smtp,
108 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' 109 subject='buildbot %(result)s in %(projectName)s on %(builder)s, '
109 'revision %(revision)s', 110 'revision %(revision)s',
110 extraRecipients=[], 111 extraRecipients=[],
111 lookup=master_utils.FilterDomain(), 112 lookup=master_utils.FilterDomain(),
112 forgiving_steps=forgiving_steps, 113 forgiving_steps=forgiving_steps,
113 tree_status_url=None, 114 tree_status_url=None,
114 sheriffs=['sheriff_android'], 115 sheriffs=['sheriff_android'],
115 public_html='../master.chromium/public_html', 116 public_html='../master.chromium/public_html',
116 use_getname=True)) 117 use_getname=True))
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.linux/master_linux_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698