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

Side by Side Diff: buildbot/cbuildbot_config.py

Issue 6673063: Configure alex branch to not push anything but also uprev. (Closed) Base URL: http://git.chromium.org/git/chromite.git@0.11.257.B
Patch Set: Created 9 years, 9 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'master' : True, 134 'master' : True,
135 135
136 'uprev' : True, 136 'uprev' : True,
137 'rev_overlays': 'both', 137 'rev_overlays': 'both',
138 'push_overlays': 'private', 138 'push_overlays': 'private',
139 }) 139 })
140 140
141 config['x86-alex-pre-flight-branch'] = default.copy() 141 config['x86-alex-pre-flight-branch'] = default.copy()
142 config['x86-alex-pre-flight-branch'].update({ 142 config['x86-alex-pre-flight-branch'].update({
143 'board' : 'x86-alex', 143 'board' : 'x86-alex',
144 'master' : True, 144 'master' : False,
145 145
146 'uprev' : True, 146 'uprev' : True,
147 'rev_overlays': 'both', 147 'rev_overlays': 'both',
148 'push_overlays': None, 148 'push_overlays': None,
149 }) 149 })
150 150
151 config['x86-mario-pre-flight-branch'] = default.copy() 151 config['x86-mario-pre-flight-branch'] = default.copy()
152 config['x86-mario-pre-flight-branch'].update({ 152 config['x86-mario-pre-flight-branch'].update({
153 'board' : 'x86-mario', 153 'board' : 'x86-mario',
154 'master' : True, 154 'master' : True,
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 config['x86-generic-full'].update(full) 230 config['x86-generic-full'].update(full)
231 config['x86-generic-full'].update({ 231 config['x86-generic-full'].update({
232 'board' : 'x86-generic', 232 'board' : 'x86-generic',
233 }) 233 })
234 234
235 config['x86-pineview-full'] = default.copy() 235 config['x86-pineview-full'] = default.copy()
236 config['x86-pineview-full'].update(full) 236 config['x86-pineview-full'].update(full)
237 config['x86-pineview-full'].update({ 237 config['x86-pineview-full'].update({
238 'board' : 'x86-pineview', 238 'board' : 'x86-pineview',
239 }) 239 })
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