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

Side by Side Diff: bin/cbuildbot_config.py

Issue 6347027: Change uprev to False for Chrome pfq. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Created 9 years, 11 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 100
101 config['x86-generic-chrome-pre-flight-queue'] = default.copy() 101 config['x86-generic-chrome-pre-flight-queue'] = default.copy()
102 config['x86-generic-chrome-pre-flight-queue'].update({ 102 config['x86-generic-chrome-pre-flight-queue'].update({
103 'board' : 'x86-generic', 103 'board' : 'x86-generic',
104 'master' : True, 104 'master' : True,
105 105
106 'uprev' : True, 106 'uprev' : False,
107 'rev_overlays': 'public', 107 'rev_overlays': 'public',
108 'push_overlays': 'public', 108 'push_overlays': 'public',
109 }) 109 })
110 110
111 111
112 config['x86-mario-pre-flight-queue'] = default.copy() 112 config['x86-mario-pre-flight-queue'] = default.copy()
113 config['x86-mario-pre-flight-queue'].update({ 113 config['x86-mario-pre-flight-queue'].update({
114 'board' : 'x86-mario', 114 'board' : 'x86-mario',
115 'master' : True, 115 'master' : True,
116 116
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 config['x86-pineview-full'].update({ 208 config['x86-pineview-full'].update({
209 'board' : 'x86-pineview', 209 'board' : 'x86-pineview',
210 }) 210 })
211 211
212 # TODO(dgarrett) delete when buildbot updated to use new names 212 # TODO(dgarrett) delete when buildbot updated to use new names
213 config['x86_agz_bin'] = config['x86-agz-bin'] 213 config['x86_agz_bin'] = config['x86-agz-bin']
214 config['x86_dogfood_bin'] = config['x86-dogfood-bin'] 214 config['x86_dogfood_bin'] = config['x86-dogfood-bin']
215 config['x86_pineview_bin'] = config['x86-pineview-bin'] 215 config['x86_pineview_bin'] = config['x86-pineview-bin']
216 config['arm_tegra2_bin'] = config['arm-tegra2-bin'] 216 config['arm_tegra2_bin'] = config['arm-tegra2-bin']
217 config['arm_generic_bin'] = config['arm-generic-bin'] 217 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