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

Side by Side Diff: bin/cbuildbot_config.py

Issue 4280002: Adding both for branch preflight (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils@master
Patch Set: add comma Created 10 years, 1 month 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
« no previous file with comments | « no previous file | 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'smoke_bvt' : True, 53 'smoke_bvt' : True,
54 'overlays': 'private', 54 'overlays': 'private',
55 } 55 }
56 config['x86-mario-pre-flight-branch'] = { 56 config['x86-mario-pre-flight-branch'] = {
57 'board' : 'x86-mario', 57 'board' : 'x86-mario',
58 'uprev' : True, 58 'uprev' : True,
59 'master' : True, 59 'master' : True,
60 'important' : False, 60 'important' : False,
61 'unittests' : True, 61 'unittests' : True,
62 'smoke_bvt' : True, 62 'smoke_bvt' : True,
63 'overlays': 'both',
63 } 64 }
64 config['x86_agz_bin'] = { 65 config['x86_agz_bin'] = {
65 'board' : 'x86-agz', 66 'board' : 'x86-agz',
66 'uprev' : True, 67 'uprev' : True,
67 'master' : False, 68 'master' : False,
68 'important' : False, 69 'important' : False,
69 'unittests' : True, 70 'unittests' : True,
70 'smoke_bvt' : True, 71 'smoke_bvt' : True,
71 } 72 }
72 config['x86_dogfood_bin'] = { 73 config['x86_dogfood_bin'] = {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'unittests' : False, 119 'unittests' : False,
119 } 120 }
120 config['arm_generic_bin'] = { 121 config['arm_generic_bin'] = {
121 'board' : 'arm-generic', 122 'board' : 'arm-generic',
122 'uprev' : True, 123 'uprev' : True,
123 'master' : False, 124 'master' : False,
124 'important' : False, 125 'important' : False,
125 'hostname' : 'codg175.jail', 126 'hostname' : 'codg175.jail',
126 'unittests' : False, 127 'unittests' : False,
127 } 128 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698