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

Side by Side Diff: bin/cbuildbot_config.py

Issue 6291013: Have the ability for the PFQ to both rev Chrome and other packages. (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
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « bin/cbuildbot.py ('k') | bin/cros_mark_chrome_as_stable.py » ('j') | cros_mark_as_stable.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698