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

Unified Diff: scripts/slave/recipe_modules/webrtc/builders.py

Issue 2316553002: WebRTC: Add Linux 32-bit trybots (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 cbc7712d09dc21b0f219e7de4f96a56e4d9252ae..ac60c6e0b795eb9ff13b3be35b2d199d6d942931 100644
--- a/scripts/slave/recipe_modules/webrtc/builders.py
+++ b/scripts/slave/recipe_modules/webrtc/builders.py
@@ -1009,6 +1009,24 @@ BUILDERS = freeze({
'bot_type': 'builder_tester',
'testing': {'platform': 'linux'},
},
+ 'linux32_dbg': {
+ 'recipe_config': 'webrtc',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder_tester',
+ 'testing': {'platform': 'linux'},
+ },
+ 'linux32_rel': {
+ 'recipe_config': 'webrtc',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'builder_tester',
+ 'testing': {'platform': 'linux'},
+ },
'linux_gyp_dbg': {
'recipe_config': 'webrtc',
'chromium_config_kwargs': {

Powered by Google App Engine
This is Rietveld 408576698