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

Side by Side Diff: scripts/master/cros_builder_mapping.py

Issue 8305010: Add ChromiumOS Trybot support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: '' Created 9 years, 2 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 | « masters/master.tryserver.chromiumos/slaves.cfg ('k') | scripts/master/cros_builders_pools.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This is a dictionary that maps waterfall dashboard names to cbuildbot_configs.
6 # In order to add a new dict, you must edit this first.
7 NAME_CONFIG_DICT = {
8 'x86 generic PFQ': 'x86-generic-pre-flight-queue',
9 'x86 generic commit queue': 'x86-generic-commit-queue',
10 'arm generic PFQ': 'arm-generic-bin',
11 'tegra2 PFQ': 'arm-tegra2-bin',
12 'x86 generic full': 'x86-generic-full',
13 'arm generic full': 'arm-generic-full',
14 'tegra2 full': 'arm-tegra2-full',
15 'tegra2 seaboard full': 'arm-tegra2-seaboard-full',
16 'x86 pineview full': 'x86-pineview-full',
17 'x86 generic chrome PFQ': 'x86-generic-chrome-pre-flight-queue',
18 'arm generic chrome PFQ': 'arm-generic-chrome-pre-flight-queue',
19 'tegra2 chrome PFQ': 'arm-tegra2-chrome-pre-flight-queue',
20 'chromiumos sdk': 'chromiumos-sdk',
21 'refresh packages': 'refresh-packages',
22 'x86 generic ASAN': 'x86-generic-asan',
23 }
24
25 # CONFIG_NAME_DICT is an inversion of NAME_CONFIG_DICT
26 CONFIG_NAME_DICT = dict([[v, k] for k, v in NAME_CONFIG_DICT.items()])
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromiumos/slaves.cfg ('k') | scripts/master/cros_builders_pools.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698