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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py

Issue 1241913003: Make the static clang/win ToT bots do official builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: also check out src-internal Created 5 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 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium 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 from . import steps 5 from . import steps
6 6
7 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 SPEC = { 9 SPEC = {
10 'settings': { 10 'settings': {
(...skipping 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 'werror': '', 1163 'werror': '',
1164 # Plugin flags often need to be changed when using a plugin newer than 1164 # Plugin flags often need to be changed when using a plugin newer than
1165 # the latest Clang package, so disable plugins. 1165 # the latest Clang package, so disable plugins.
1166 'clang_use_chrome_plugins': '0', 1166 'clang_use_chrome_plugins': '0',
1167 }, 1167 },
1168 'testing': { 1168 'testing': {
1169 'platform': 'mac', 1169 'platform': 'mac',
1170 } 1170 }
1171 }, 1171 },
1172 'ClangToTWin': { 1172 'ClangToTWin': {
1173 'chromium_config': 'chromium_win_clang_tot', 1173 'chromium_config': 'chromium_win_clang_official_tot',
1174 'gclient_config': 'chromium', 1174 'gclient_config': 'chromium',
1175 'gclient_apply_config': ['chrome_internal'],
1175 'chromium_config_kwargs': { 1176 'chromium_config_kwargs': {
1176 'BUILD_CONFIG': 'Release', 1177 'BUILD_CONFIG': 'Release',
1177 'TARGET_BITS': 32, 1178 'TARGET_BITS': 32,
1178 }, 1179 },
1179 'bot_type': 'builder', 1180 'bot_type': 'builder',
1180 'testing': { 'platform': 'win', }, 1181 'testing': { 'platform': 'win', },
1181 'use_isolate': True, 1182 'use_isolate': True,
1182 'enable_swarming': True, 1183 'enable_swarming': True,
1183 # Workaround so that recipes doesn't add random build targets to our 1184 # Workaround so that recipes doesn't add random build targets to our
1184 # compile line. We want to build everything. 1185 # compile line. We want to build everything.
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
1248 'BUILD_CONFIG': 'Release', 1249 'BUILD_CONFIG': 'Release',
1249 'TARGET_BITS': 32, 1250 'TARGET_BITS': 32,
1250 }, 1251 },
1251 'test_generators': [steps.generate_gtest], 1252 'test_generators': [steps.generate_gtest],
1252 'bot_type': 'tester', 1253 'bot_type': 'tester',
1253 'parent_buildername': 'ClangToTWin(dll)', 1254 'parent_buildername': 'ClangToTWin(dll)',
1254 'testing': { 'platform': 'win' }, 1255 'testing': { 'platform': 'win' },
1255 'enable_swarming': True, 1256 'enable_swarming': True,
1256 }, 1257 },
1257 'ClangToTWin64': { 1258 'ClangToTWin64': {
1258 'chromium_config': 'chromium_win_clang_tot', 1259 'chromium_config': 'chromium_win_clang_official_tot',
1259 'gclient_config': 'chromium', 1260 'gclient_config': 'chromium',
1261 'gclient_apply_config': ['chrome_internal'],
1260 'chromium_config_kwargs': { 1262 'chromium_config_kwargs': {
1261 'BUILD_CONFIG': 'Release', 1263 'BUILD_CONFIG': 'Release',
1262 'TARGET_BITS': 64, 1264 'TARGET_BITS': 64,
1263 }, 1265 },
1264 'bot_type': 'builder', 1266 'bot_type': 'builder',
1265 'testing': { 'platform': 'win', }, 1267 'testing': { 'platform': 'win', },
1266 'use_isolate': True, 1268 'use_isolate': True,
1267 'enable_swarming': True, 1269 'enable_swarming': True,
1268 # Workaround so that recipes doesn't add random build targets to our 1270 # Workaround so that recipes doesn't add random build targets to our
1269 # compile line. We want to build everything. 1271 # compile line. We want to build everything.
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 'test_generators': [ 1583 'test_generators': [
1582 steps.generate_gtest, 1584 steps.generate_gtest,
1583 steps.generate_script, 1585 steps.generate_script,
1584 ], 1586 ],
1585 'testing': { 1587 'testing': {
1586 'platform': 'win', 1588 'platform': 'win',
1587 }, 1589 },
1588 }, 1590 },
1589 }, 1591 },
1590 } 1592 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698