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

Side by Side Diff: bin/cbuildbot_config.py

Issue 3567010: Add enabling of local account. This should get the suite_Smoke to go green on the pfq. (Closed) Base URL: http://git.chromium.org/git/crosutils.git
Patch Set: Disable smoke on pineview Created 10 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 | « bin/cbuildbot.py ('k') | no next file » | 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) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS 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 """Dictionary of configuration types for cbuildbot. 5 """Dictionary of configuration types for cbuildbot.
6 6
7 Each dictionary entry is in turn a dictionary of config_param->value. 7 Each dictionary entry is in turn a dictionary of config_param->value.
8 8
9 config_param's: 9 config_param's:
10 board -- The board of the image to build. 10 board -- The board of the image to build.
(...skipping 30 matching lines...) Expand all
41 'unittests' : True, 41 'unittests' : True,
42 'smoke_bvt' : True, 42 'smoke_bvt' : True,
43 } 43 }
44 config['x86_pineview_bin'] = { 44 config['x86_pineview_bin'] = {
45 'board' : 'x86-pineview', 45 'board' : 'x86-pineview',
46 'uprev' : True, 46 'uprev' : True,
47 'master' : False, 47 'master' : False,
48 'important' : False, 48 'important' : False,
49 'hostname' : 'codf200.jail', 49 'hostname' : 'codf200.jail',
50 'unittests': True, 50 'unittests': True,
51 'smoke_bvt' : True,
52 } 51 }
53 config['arm_tegra2_bin'] = { 52 config['arm_tegra2_bin'] = {
54 'board' : 'tegra2', 53 'board' : 'tegra2',
55 'uprev' : True, 54 'uprev' : True,
56 'master' : False, 55 'master' : False,
57 'important' : False, 56 'important' : False,
58 'hostname' : 'codg172.jail', 57 'hostname' : 'codg172.jail',
59 'unittests' : False, 58 'unittests' : False,
60 } 59 }
61 config['arm_voguev210_bin'] = { 60 config['arm_voguev210_bin'] = {
(...skipping 21 matching lines...) Expand all
83 'unittests' : False, 82 'unittests' : False,
84 } 83 }
85 config['arm_generic_bin'] = { 84 config['arm_generic_bin'] = {
86 'board' : 'arm-generic', 85 'board' : 'arm-generic',
87 'uprev' : True, 86 'uprev' : True,
88 'master' : False, 87 'master' : False,
89 'important' : False, 88 'important' : False,
90 'hostname' : 'codg175.jail', 89 'hostname' : 'codg175.jail',
91 'unittests' : False, 90 'unittests' : False,
92 } 91 }
OLDNEW
« no previous file with comments | « bin/cbuildbot.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698