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

Side by Side Diff: scripts/slave/recipe_modules/webrtc/builders.py

Issue 2313253005: WebRTC: Promote Linux 32-bit bots to main waterfall again. (Closed)
Patch Set: Created 4 years, 3 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
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 # Contains the bulk of the WebRTC builder configurations so they can be reused 5 # Contains the bulk of the WebRTC builder configurations so they can be reused
6 # from multiple recipes. 6 # from multiple recipes.
7 7
8 from recipe_engine.types import freeze 8 from recipe_engine.types import freeze
9 9
10 RECIPE_CONFIGS = freeze({ 10 RECIPE_CONFIGS = freeze({
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 'chromium_config_kwargs': { 242 'chromium_config_kwargs': {
243 'BUILD_CONFIG': 'Release', 243 'BUILD_CONFIG': 'Release',
244 'TARGET_BITS': 64, 244 'TARGET_BITS': 64,
245 }, 245 },
246 'webrtc_config_kwargs': { 246 'webrtc_config_kwargs': {
247 'PERF_ID': 'webrtc-mac-large-tests', 247 'PERF_ID': 'webrtc-mac-large-tests',
248 }, 248 },
249 'bot_type': 'builder_tester', 249 'bot_type': 'builder_tester',
250 'testing': {'platform': 'mac'}, 250 'testing': {'platform': 'mac'},
251 }, 251 },
252 'Linux32 Debug': {
253 'recipe_config': 'webrtc',
254 'chromium_config_kwargs': {
255 'BUILD_CONFIG': 'Debug',
256 'TARGET_BITS': 32,
257 },
258 'bot_type': 'builder_tester',
259 'testing': {'platform': 'linux'},
260 },
261 'Linux32 Release': {
262 'recipe_config': 'webrtc',
263 'chromium_config_kwargs': {
264 'BUILD_CONFIG': 'Release',
265 'TARGET_BITS': 32,
266 },
267 'bot_type': 'builder_tester',
268 'testing': {'platform': 'linux'},
269 },
252 'Linux64 Debug': { 270 'Linux64 Debug': {
253 'recipe_config': 'webrtc', 271 'recipe_config': 'webrtc',
254 'chromium_config_kwargs': { 272 'chromium_config_kwargs': {
255 'BUILD_CONFIG': 'Debug', 273 'BUILD_CONFIG': 'Debug',
256 'TARGET_BITS': 64, 274 'TARGET_BITS': 64,
257 }, 275 },
258 'bot_type': 'builder_tester', 276 'bot_type': 'builder_tester',
259 'testing': {'platform': 'linux'}, 277 'testing': {'platform': 'linux'},
260 }, 278 },
261 'Linux64 Release': { 279 'Linux64 Release': {
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 'recipe_config': 'webrtc', 610 'recipe_config': 'webrtc',
593 'chromium_config_kwargs': { 611 'chromium_config_kwargs': {
594 'BUILD_CONFIG': 'Release', 612 'BUILD_CONFIG': 'Release',
595 'TARGET_BITS': 64, 613 'TARGET_BITS': 64,
596 }, 614 },
597 'bot_type': 'builder_tester', 615 'bot_type': 'builder_tester',
598 'testing': {'platform': 'mac'}, 616 'testing': {'platform': 'mac'},
599 'use_isolate': True, 617 'use_isolate': True,
600 'enable_swarming': True, 618 'enable_swarming': True,
601 }, 619 },
602 'Linux32 Debug': {
603 'recipe_config': 'webrtc',
604 'chromium_config_kwargs': {
605 'BUILD_CONFIG': 'Debug',
606 'TARGET_BITS': 32,
607 },
608 'bot_type': 'builder_tester',
609 'testing': {'platform': 'linux'},
610 },
611 'Linux32 Release': {
612 'recipe_config': 'webrtc',
613 'chromium_config_kwargs': {
614 'BUILD_CONFIG': 'Release',
615 'TARGET_BITS': 32,
616 },
617 'bot_type': 'builder_tester',
618 'testing': {'platform': 'linux'},
619 },
620 'Linux64 Release (swarming)': { 620 'Linux64 Release (swarming)': {
621 'recipe_config': 'webrtc', 621 'recipe_config': 'webrtc',
622 'chromium_config_kwargs': { 622 'chromium_config_kwargs': {
623 'BUILD_CONFIG': 'Release', 623 'BUILD_CONFIG': 'Release',
624 'TARGET_BITS': 64, 624 'TARGET_BITS': 64,
625 }, 625 },
626 'bot_type': 'builder_tester', 626 'bot_type': 'builder_tester',
627 'testing': {'platform': 'linux'}, 627 'testing': {'platform': 'linux'},
628 'use_isolate': True, 628 'use_isolate': True,
629 'enable_swarming': True, 629 'enable_swarming': True,
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
1299 'TARGET_ARCH': 'arm', 1299 'TARGET_ARCH': 'arm',
1300 'TARGET_BITS': 32, 1300 'TARGET_BITS': 32,
1301 }, 1301 },
1302 'bot_type': 'builder', 1302 'bot_type': 'builder',
1303 'testing': {'platform': 'linux'}, 1303 'testing': {'platform': 'linux'},
1304 }, 1304 },
1305 }, 1305 },
1306 }, 1306 },
1307 }) 1307 })
1308 1308
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698