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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/webrtc/builders.py
diff --git a/scripts/slave/recipe_modules/webrtc/builders.py b/scripts/slave/recipe_modules/webrtc/builders.py
index ac60c6e0b795eb9ff13b3be35b2d199d6d942931..8c0b4481ab8dfe822e56a2d79dcc62e55f148beb 100644
--- a/scripts/slave/recipe_modules/webrtc/builders.py
+++ b/scripts/slave/recipe_modules/webrtc/builders.py
@@ -249,6 +249,24 @@ BUILDERS = freeze({
'bot_type': 'builder_tester',
'testing': {'platform': 'mac'},
},
+ 'Linux32 Debug': {
+ 'recipe_config': 'webrtc',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder_tester',
+ 'testing': {'platform': 'linux'},
+ },
+ 'Linux32 Release': {
+ 'recipe_config': 'webrtc',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder_tester',
+ 'testing': {'platform': 'linux'},
+ },
'Linux64 Debug': {
'recipe_config': 'webrtc',
'chromium_config_kwargs': {
@@ -599,24 +617,6 @@ BUILDERS = freeze({
'use_isolate': True,
'enable_swarming': True,
},
- 'Linux32 Debug': {
- 'recipe_config': 'webrtc',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder_tester',
- 'testing': {'platform': 'linux'},
- },
- 'Linux32 Release': {
- 'recipe_config': 'webrtc',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder_tester',
- 'testing': {'platform': 'linux'},
- },
'Linux64 Release (swarming)': {
'recipe_config': 'webrtc',
'chromium_config_kwargs': {

Powered by Google App Engine
This is Rietveld 408576698