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

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

Issue 11882038: Add components_unittests to bots (Closed) Base URL: https://git.chromium.org/chromium/tools/build.git@master
Patch Set: Created 7 years, 11 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
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 chromium_categories_steps = { 13 chromium_categories_steps = {
14 '': ['update'], 14 '': ['update'],
15 'tester': [ 15 'tester': [
16 'aura_unit_tests', 16 'aura_unit_tests',
17 'base_unittests', 17 'base_unittests',
18 'browser_tests', 18 'browser_tests',
19 'cacheinvalidation_unittests', 19 'cacheinvalidation_unittests',
20 'chromeos_unittests', 20 'chromeos_unittests',
21 'components_unittests',
iannucci 2013/01/15 23:53:19 That will make this test a tree closer. I'm assumi
kaiwang 2013/01/16 01:50:54 Yes, components dir will contain important compone
21 'content_browsertests', 22 'content_browsertests',
22 'content_unittests', 23 'content_unittests',
23 'courgette_unittests', 24 'courgette_unittests',
24 'crypto_unittests', 25 'crypto_unittests',
25 'dbus_unittests', 26 'dbus_unittests',
26 'device_unittests', 27 'device_unittests',
27 'googleurl_unittests', 28 'googleurl_unittests',
28 'installer_util_unittests', 29 'installer_util_unittests',
29 'interactive_ui_tests', 30 'interactive_ui_tests',
30 'ipc_tests', 31 'ipc_tests',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 relayhost=config.Master.smtp, 144 relayhost=config.Master.smtp,
144 subject='Warning ' + subject, 145 subject='Warning ' + subject,
145 status_header=warning_header, 146 status_header=warning_header,
146 extraRecipients=[], 147 extraRecipients=[],
147 lookup=master_utils.FilterDomain(), 148 lookup=master_utils.FilterDomain(),
148 forgiving_steps=forgiving_steps, 149 forgiving_steps=forgiving_steps,
149 tree_status_url=None, 150 tree_status_url=None,
150 sheriffs=['sheriff_aura'], 151 sheriffs=['sheriff_aura'],
151 public_html='../master.chromium/public_html', 152 public_html='../master.chromium/public_html',
152 use_getname=True)) 153 use_getname=True))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698