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

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

Issue 2306373003: libyuv: Add Android Testers (Closed)
Patch Set: Fixed WebRTC expectation 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/libyuv/builders.py
diff --git a/scripts/slave/recipe_modules/libyuv/builders.py b/scripts/slave/recipe_modules/libyuv/builders.py
index 385694163743750947dd5e92989e6bc574df4e01..44a76bff2692a7ed94d97409c343a37f6c80f4d4 100644
--- a/scripts/slave/recipe_modules/libyuv/builders.py
+++ b/scripts/slave/recipe_modules/libyuv/builders.py
@@ -22,10 +22,12 @@ RECIPE_CONFIGS = freeze({
},
'libyuv_android': {
'chromium_config': 'libyuv_android',
+ 'chromium_android_config': 'libyuv',
'gclient_config': 'libyuv_android',
},
'libyuv_android_clang': {
'chromium_config': 'libyuv_android_clang',
+ 'chromium_android_config': 'libyuv',
'gclient_config': 'libyuv_android',
},
'libyuv_ios': {
@@ -36,6 +38,9 @@ RECIPE_CONFIGS = freeze({
BUILDERS = freeze({
'client.libyuv': {
+ 'settings': {
+ 'build_gs_bucket': 'chromium-libyuv',
+ },
'builders': {
'Win32 Debug (VS2010)': {
'recipe_config': 'libyuv',
@@ -442,6 +447,9 @@ BUILDERS = freeze({
},
'bot_type': 'builder',
'testing': {'platform': 'linux'},
+ 'triggers': [
+ 'Android Tester ARM32 Debug (Nexus 5X)',
+ ],
},
'Android Release': {
'recipe_config': 'libyuv_android',
@@ -453,6 +461,9 @@ BUILDERS = freeze({
},
'bot_type': 'builder',
'testing': {'platform': 'linux'},
+ 'triggers': [
+ 'Android Tester ARM32 Release (Nexus 5X)',
+ ],
},
'Android ARM64 Debug': {
'recipe_config': 'libyuv_android',
@@ -464,6 +475,9 @@ BUILDERS = freeze({
},
'bot_type': 'builder',
'testing': {'platform': 'linux'},
+ 'triggers': [
+ 'Android Tester ARM64 Debug (Nexus 5X)',
+ ],
},
'Android Clang Debug': {
'recipe_config': 'libyuv_android_clang',
@@ -533,9 +547,48 @@ BUILDERS = freeze({
'bot_type': 'builder',
'testing': {'platform': 'linux'},
},
+ 'Android Tester ARM32 Debug (Nexus 5X)': {
+ 'recipe_config': 'libyuv_android',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'arm',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'tester',
+ 'parent_buildername': 'Android Debug',
+ 'testing': {'platform': 'linux'},
+ },
+ 'Android Tester ARM32 Release (Nexus 5X)': {
+ 'recipe_config': 'libyuv_android',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Release',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'arm',
+ 'TARGET_BITS': 32,
+ },
+ 'bot_type': 'tester',
+ 'parent_buildername': 'Android Release',
+ 'testing': {'platform': 'linux'},
+ },
+ 'Android Tester ARM64 Debug (Nexus 5X)': {
+ 'recipe_config': 'libyuv_android',
+ 'chromium_config_kwargs': {
+ 'BUILD_CONFIG': 'Debug',
+ 'TARGET_PLATFORM': 'android',
+ 'TARGET_ARCH': 'arm',
+ 'TARGET_BITS': 64,
+ },
+ 'bot_type': 'tester',
+ 'parent_buildername': 'Android ARM64 Debug',
+ 'testing': {'platform': 'linux'},
+ },
},
},
'tryserver.libyuv': {
+ 'settings': {
+ 'build_gs_bucket': 'chromium-libyuv',
+ },
'builders': {
'win': {
'recipe_config': 'libyuv',
@@ -820,7 +873,7 @@ BUILDERS = freeze({
'TARGET_ARCH': 'arm',
'TARGET_BITS': 32,
},
- 'bot_type': 'builder',
+ 'bot_type': 'builder_tester',
'testing': {'platform': 'linux'},
},
'android_rel': {
@@ -831,7 +884,7 @@ BUILDERS = freeze({
'TARGET_ARCH': 'arm',
'TARGET_BITS': 32,
},
- 'bot_type': 'builder',
+ 'bot_type': 'builder_tester',
'testing': {'platform': 'linux'},
},
'android_clang': {
@@ -853,7 +906,7 @@ BUILDERS = freeze({
'TARGET_ARCH': 'arm',
'TARGET_BITS': 64,
},
- 'bot_type': 'builder',
+ 'bot_type': 'builder_tester',
'testing': {'platform': 'linux'},
},
'android_x86': {
« no previous file with comments | « scripts/slave/recipe_modules/libyuv/api.py ('k') | scripts/slave/recipe_modules/libyuv/chromium_android_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698