OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |