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

Side by Side Diff: buildbot/cbuildbot_config.py

Issue 6673057: Configure alex branch to not push anything but also uprev. (Closed) Base URL: http://git.chromium.org/git/chromite.git@master
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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 'master' : True, 139 'master' : True,
140 140
141 'uprev' : True, 141 'uprev' : True,
142 'rev_overlays': 'both', 142 'rev_overlays': 'both',
143 'push_overlays': 'private', 143 'push_overlays': 'private',
144 }) 144 })
145 145
146 config['x86-alex-pre-flight-branch'] = default.copy() 146 config['x86-alex-pre-flight-branch'] = default.copy()
147 config['x86-alex-pre-flight-branch'].update({ 147 config['x86-alex-pre-flight-branch'].update({
148 'board' : 'x86-alex', 148 'board' : 'x86-alex',
149 'master' : True, 149 'master' : False,
150 150
151 'uprev' : False, 151 'uprev' : True,
152 'rev_overlays': 'both', 152 'rev_overlays': 'both',
153 'push_overlays': 'both', 153 'push_overlays': None,
154 }) 154 })
155 155
156 config['x86-mario-pre-flight-branch'] = default.copy() 156 config['x86-mario-pre-flight-branch'] = default.copy()
157 config['x86-mario-pre-flight-branch'].update({ 157 config['x86-mario-pre-flight-branch'].update({
158 'board' : 'x86-mario', 158 'board' : 'x86-mario',
159 'master' : True, 159 'master' : True,
160 160
161 'uprev' : True, 161 'uprev' : True,
162 'rev_overlays': 'both', 162 'rev_overlays': 'both',
163 'push_overlays': 'both', 163 'push_overlays': 'both',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 config['x86-generic-full'].update(full) 235 config['x86-generic-full'].update(full)
236 config['x86-generic-full'].update({ 236 config['x86-generic-full'].update({
237 'board' : 'x86-generic', 237 'board' : 'x86-generic',
238 }) 238 })
239 239
240 config['x86-pineview-full'] = default.copy() 240 config['x86-pineview-full'] = default.copy()
241 config['x86-pineview-full'].update(full) 241 config['x86-pineview-full'].update(full)
242 config['x86-pineview-full'].update({ 242 config['x86-pineview-full'].update({
243 'board' : 'x86-pineview', 243 'board' : 'x86-pineview',
244 }) 244 })
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