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 'board' : 'x86-generic', |
| 58 'uprev' : False, |
| 59 'master' : True, |
| 60 'important' : False, |
| 61 'hostname' : 'chromeosbuild2', |
| 62 'unittests' : True, |
| 63 'tests' : True, |
| 64 'rev_overlays': 'public', |
| 65 'push_overlays': 'public', |
| 66 } |
56 config['x86-mario-pre-flight-queue'] = { | 67 config['x86-mario-pre-flight-queue'] = { |
57 'board' : 'x86-mario', | 68 'board' : 'x86-mario', |
58 'uprev' : True, | 69 'uprev' : True, |
59 'master' : True, | 70 'master' : True, |
60 'important' : False, | 71 'important' : False, |
61 'unittests' : True, | 72 'unittests' : True, |
62 'tests' : True, | 73 'tests' : True, |
63 'rev_overlays': 'both', | 74 'rev_overlays': 'both', |
64 'push_overlays': 'private', | 75 'push_overlays': 'private', |
65 } | 76 } |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 'board' : 'arm-generic', | 128 'board' : 'arm-generic', |
118 'uprev' : True, | 129 'uprev' : True, |
119 'master' : False, | 130 'master' : False, |
120 'important' : False, | 131 'important' : False, |
121 'unittests' : False, | 132 'unittests' : False, |
122 'rev_overlays': 'public', | 133 'rev_overlays': 'public', |
123 'push_overlays': None, | 134 'push_overlays': None, |
124 'factory_install_mod' : False, | 135 'factory_install_mod' : False, |
125 'factory_test_mod' : False, | 136 'factory_test_mod' : False, |
126 } | 137 } |
OLD | NEW |