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

Side by Side Diff: bin/cbuildbot_config.py

Issue 6379015: Added arm-tegra2-seaboard-full (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Merged against current. Created 9 years, 10 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 | « 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 config['x86-generic-pre-flight-queue'] = default.copy() 90 config['x86-generic-pre-flight-queue'] = default.copy()
91 config['x86-generic-pre-flight-queue'].update({ 91 config['x86-generic-pre-flight-queue'].update({
92 'board' : 'x86-generic', 92 'board' : 'x86-generic',
93 'master' : True, 93 'master' : True,
94 'hostname' : 'chromeosbuild2', 94 'hostname' : 'chromeosbuild2',
95 95
96 'uprev' : True, 96 'uprev' : True,
97 'rev_overlays': 'public', 97 'rev_overlays': 'public',
98 'push_overlays': 'public', 98 'push_overlays': 'public',
99 }) 99 })
100 config['x86-generic-chrome-pre-flight-queue'] = default.copy() 100
101 config['x86-generic-chrome-pre-flight-queue'].update({ 101 config['x86-generic-chrome-pre-flight-queue'] = \
102 'board' : 'x86-generic', 102 config['x86-generic-pre-flight-queue']
103 'uprev' : False, 103
104 'master' : True,
105 'rev_overlays': 'public',
106 'push_overlays': 'public',
107 })
108 config['x86-mario-pre-flight-queue'] = default.copy() 104 config['x86-mario-pre-flight-queue'] = default.copy()
109 config['x86-mario-pre-flight-queue'].update({ 105 config['x86-mario-pre-flight-queue'].update({
110 'board' : 'x86-mario', 106 'board' : 'x86-mario',
111 'master' : True, 107 'master' : True,
112 108
113 'uprev' : True, 109 'uprev' : True,
114 'rev_overlays': 'both', 110 'rev_overlays': 'both',
115 'push_overlays': 'private', 111 'push_overlays': 'private',
116 }) 112 })
113
117 config['x86-mario-pre-flight-branch'] = default.copy() 114 config['x86-mario-pre-flight-branch'] = default.copy()
118 config['x86-mario-pre-flight-branch'].update({ 115 config['x86-mario-pre-flight-branch'].update({
119 'board' : 'x86-mario', 116 'board' : 'x86-mario',
120 'master' : True, 117 'master' : True,
121 118
122 'uprev' : True, 119 'uprev' : True,
123 'rev_overlays': 'both', 120 'rev_overlays': 'both',
124 'push_overlays': 'both', 121 'push_overlays': 'both',
125 }) 122 })
126 123
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'board' : 'arm-generic', 175 'board' : 'arm-generic',
179 }) 176 })
180 177
181 config['arm-tegra2-full'] = default.copy() 178 config['arm-tegra2-full'] = default.copy()
182 config['arm-tegra2-full'].update(arm) 179 config['arm-tegra2-full'].update(arm)
183 config['arm-tegra2-full'].update(full) 180 config['arm-tegra2-full'].update(full)
184 config['arm-tegra2-full'].update({ 181 config['arm-tegra2-full'].update({
185 'board' : 'tegra2_dev-board', 182 'board' : 'tegra2_dev-board',
186 }) 183 })
187 184
185 config['arm-tegra2-seaboard-full'] = default.copy()
186 config['arm-tegra2-seaboard-full'].update(arm)
187 config['arm-tegra2-seaboard-full'].update(full)
188 config['arm-tegra2-seaboard-full'].update({
189 'board' : 'tegra2_seaboard',
190 })
191
188 config['x86-generic-full'] = default.copy() 192 config['x86-generic-full'] = default.copy()
189 config['x86-generic-full'].update(full) 193 config['x86-generic-full'].update(full)
190 config['x86-generic-full'].update({ 194 config['x86-generic-full'].update({
191 'board' : 'x86-generic', 195 'board' : 'x86-generic',
192 }) 196 })
193 197
194 config['x86-pineview-full'] = default.copy() 198 config['x86-pineview-full'] = default.copy()
195 config['x86-pineview-full'].update(full) 199 config['x86-pineview-full'].update(full)
196 config['x86-pineview-full'].update({ 200 config['x86-pineview-full'].update({
197 'board' : 'x86-pineview', 201 'board' : 'x86-pineview',
198 }) 202 })
199 203
200 # TODO(dgarrett) delete when buildbot updated to use new names 204 # TODO(dgarrett) delete when buildbot updated to use new names
201 config['x86_agz_bin'] = config['x86-agz-bin'] 205 config['x86_agz_bin'] = config['x86-agz-bin']
202 config['x86_dogfood_bin'] = config['x86-dogfood-bin'] 206 config['x86_dogfood_bin'] = config['x86-dogfood-bin']
203 config['x86_pineview_bin'] = config['x86-pineview-bin'] 207 config['x86_pineview_bin'] = config['x86-pineview-bin']
204 config['arm_tegra2_bin'] = config['arm-tegra2-bin'] 208 config['arm_tegra2_bin'] = config['arm-tegra2-bin']
205 config['arm_generic_bin'] = config['arm-generic-bin'] 209 config['arm_generic_bin'] = config['arm-generic-bin']
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