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

Side by Side Diff: Tools/GardeningServer/scripts/config.js

Issue 402603007: Get sheriff-o-matic data from auto-sheriff.appspot.com. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update and delete old code Created 6 years, 5 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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 12 matching lines...) Expand all
23 * THE POSSIBILITY OF SUCH DAMAGE. 23 * THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 var config = config || {}; 26 var config = config || {};
27 27
28 (function() { 28 (function() {
29 29
30 config = { 30 config = {
31 kUpdateFrequency: 1000 * 30, 31 kUpdateFrequency: 1000 * 30,
32 kBlinkRevisionURL: 'http://src.chromium.org/viewvc/blink', 32 kBlinkRevisionURL: 'http://src.chromium.org/viewvc/blink',
33 buildConsoleURL: 'http://build.chromium.org/p/chromium.webkit',
34 layoutTestResultsURL: 'https://storage.googleapis.com/chromium-layout-test-a rchives', 33 layoutTestResultsURL: 'https://storage.googleapis.com/chromium-layout-test-a rchives',
35 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall', 34 waterfallURL: 'http://build.chromium.org/p/chromium.webkit/waterfall',
35 // FIXME: All usages of this list need to be replaced.
36 builders: { 36 builders: {
37 'WebKit XP': {version: 'xp'}, 37 'WebKit XP': {version: 'xp'},
38 'WebKit Win7': {version: 'win7'}, 38 'WebKit Win7': {version: 'win7'},
39 'WebKit Win7 (dbg)': {version: 'win7', debug: true}, 39 'WebKit Win7 (dbg)': {version: 'win7', debug: true},
40 'WebKit Linux': {version: 'lucid', is64bit: true}, 40 'WebKit Linux': {version: 'lucid', is64bit: true},
41 // FIXME: Temporarily disabled, because it makes garden-o-matic unusably slow. 41 // FIXME: Temporarily disabled, because it makes garden-o-matic unusably slow.
42 // 'WebKit Linux ASAN': {version: 'lucid', is64bit: true}, 42 // 'WebKit Linux ASAN': {version: 'lucid', is64bit: true},
43 'WebKit Linux 32': {version: 'lucid'}, 43 'WebKit Linux 32': {version: 'lucid'},
44 'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true}, 44 'WebKit Linux (dbg)': {version: 'lucid', is64bit: true, debug: true},
45 'WebKit Linux Leak': {version: 'leak', is64bit: true}, 45 'WebKit Linux Leak': {version: 'leak', is64bit: true},
46 'WebKit Mac10.6': {version: 'snowleopard'}, 46 'WebKit Mac10.6': {version: 'snowleopard'},
47 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true}, 47 'WebKit Mac10.6 (dbg)': {version: 'snowleopard', debug: true},
48 'WebKit Mac10.7': {version: 'lion'}, 48 'WebKit Mac10.7': {version: 'lion'},
49 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true}, 49 'WebKit Mac10.7 (dbg)': {version: 'lion', debug: true},
50 'WebKit Mac10.8': {version: 'mountainlion'}, 50 'WebKit Mac10.8': {version: 'mountainlion'},
51 'WebKit Mac10.8 (retina)': {version: 'retina'}, 51 'WebKit Mac10.8 (retina)': {version: 'retina'},
52 'WebKit Mac10.9': {version: 'mavericks'}, 52 'WebKit Mac10.9': {version: 'mavericks'},
53 'WebKit Android (Nexus4)': {version: 'android'}, 53 'WebKit Android (Nexus4)': {version: 'android'},
54 }, 54 },
55 resultsDirectoryNameFromBuilderName: function(builderName) {
56 return builderName.replace(/[ .()]/g, '_');
57 },
58 builderApplies: function(builderName) {
59 return builderName.indexOf('GPU') == -1 &&
60 builderName.indexOf('Oilpan') == -1;
61 },
62 }; 55 };
63 56
64 })(); 57 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698