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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
46 'board' : 'x86-generic', | 46 'board' : 'x86-generic', |
47 'uprev' : True, | 47 'uprev' : True, |
48 'master' : True, | 48 'master' : True, |
49 'important' : False, | 49 'important' : False, |
50 'hostname' : 'chromeosbuild2', | 50 'hostname' : 'chromeosbuild2', |
51 'unittests' : True, | 51 'unittests' : True, |
52 'tests' : True, | 52 'tests' : True, |
53 'rev_overlays': 'public', | 53 'rev_overlays': 'public', |
54 'push_overlays': 'public', | 54 'push_overlays': 'public', |
55 } | 55 } |
56 config['x86-generic-chrome-pre-flight-queue'] = \ | |
57 config['x86-generic-pre-flight-queue'] | |
scottz
2011/01/27 06:04:53
slashes are evil but I am not sure of a good way t
| |
56 config['x86-mario-pre-flight-queue'] = { | 58 config['x86-mario-pre-flight-queue'] = { |
57 'board' : 'x86-mario', | 59 'board' : 'x86-mario', |
58 'uprev' : True, | 60 'uprev' : True, |
59 'master' : True, | 61 'master' : True, |
60 'important' : False, | 62 'important' : False, |
61 'unittests' : True, | 63 'unittests' : True, |
62 'tests' : True, | 64 'tests' : True, |
63 'rev_overlays': 'both', | 65 'rev_overlays': 'both', |
64 'push_overlays': 'private', | 66 'push_overlays': 'private', |
65 } | 67 } |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
117 'board' : 'arm-generic', | 119 'board' : 'arm-generic', |
118 'uprev' : True, | 120 'uprev' : True, |
119 'master' : False, | 121 'master' : False, |
120 'important' : False, | 122 'important' : False, |
121 'unittests' : False, | 123 'unittests' : False, |
122 'rev_overlays': 'public', | 124 'rev_overlays': 'public', |
123 'push_overlays': None, | 125 'push_overlays': None, |
124 'factory_install_mod' : False, | 126 'factory_install_mod' : False, |
125 'factory_test_mod' : False, | 127 'factory_test_mod' : False, |
126 } | 128 } |
OLD | NEW |