Commit 3171f431 authored by Simon's avatar Simon Committed by Commit Bot

Migrate android-go_webview-perf to main waterfall

Bug: 931336
Change-Id: Ief94ae8d2b2b6bb03d5eeb11e26ea53c80abdb7b
Reviewed-on: https://chromium-review.googlesource.com/c/1467803Reviewed-by: default avatarJuan Antonio Navarro Pérez <perezju@chromium.org>
Commit-Queue: Simon Hatch <simonhatch@chromium.org>
Cr-Commit-Position: refs/heads/master@{#634481}
parent cb62669c
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
## Android ## Android
* [android-go-perf](https://ci.chromium.org/buildbot/chromium.perf/android-go-perf/): Android O. * [android-go-perf](https://ci.chromium.org/buildbot/chromium.perf/android-go-perf/): Android O.
* [android-go_webview-perf](https://ci.chromium.org/buildbot/chromium.perf/android-go_webview-perf/): Android OPM1.171019.021.
* [Android Nexus5 Perf](https://ci.chromium.org/buildbot/chromium.perf/Android%20Nexus5%20Perf/): Android KOT49H. * [Android Nexus5 Perf](https://ci.chromium.org/buildbot/chromium.perf/Android%20Nexus5%20Perf/): Android KOT49H.
* [android-nexus5x-perf](https://ci.chromium.org/buildbot/chromium.perf/android-nexus5x-perf/): Android MMB29Q. * [android-nexus5x-perf](https://ci.chromium.org/buildbot/chromium.perf/android-nexus5x-perf/): Android MMB29Q.
* [Android Nexus5X WebView Perf](https://ci.chromium.org/buildbot/chromium.perf/Android%20Nexus5X%20WebView%20Perf/): Android AOSP MOB30K. * [Android Nexus5X WebView Perf](https://ci.chromium.org/buildbot/chromium.perf/Android%20Nexus5X%20WebView%20Perf/): Android AOSP MOB30K.
......
...@@ -684,6 +684,51 @@ ...@@ -684,6 +684,51 @@
} }
] ]
}, },
"android-go_webview-perf": {
"isolated_scripts": [
{
"args": [
"-v",
"--browser=android-webview-google",
"--upload-results",
"--webview-embedder-apk=../../out/Release/apks/SystemWebViewShell.apk",
"--test-shard-map-filename=android-go_webview-perf_map.json"
],
"isolate_name": "performance_webview_test_suite",
"merge": {
"script": "//tools/perf/process_perf_results.py"
},
"name": "performance_webview_test_suite",
"override_compile_targets": [
"performance_webview_test_suite"
],
"swarming": {
"can_use_on_swarming_builders": true,
"dimension_sets": [
{
"device_os": "O",
"device_os_flavor": "google",
"device_type": "gobo",
"os": "Android",
"pool": "chrome.tests.perf-webview"
}
],
"expiration": 7200,
"hard_timeout": 36000,
"ignore_task_failure": false,
"io_timeout": 1800,
"shards": 25
},
"trigger_script": {
"args": [
"--multiple-dimension-script-verbose",
"True"
],
"script": "//testing/trigger_scripts/perf_device_trigger.py"
}
}
]
},
"android-nexus5x-perf": { "android-nexus5x-perf": {
"isolated_scripts": [ "isolated_scripts": [
{ {
......
...@@ -138,6 +138,10 @@ ANDROID_GO = PerfPlatform( ...@@ -138,6 +138,10 @@ ANDROID_GO = PerfPlatform(
num_shards=19, num_shards=19,
benchmarks_names_to_run=_ANDROID_GO_BENCHMARK_NAMES) benchmarks_names_to_run=_ANDROID_GO_BENCHMARK_NAMES)
ANDROID_GO_WEBVIEW = PerfPlatform(
'android-go_webview-perf', 'Android OPM1.171019.021',
num_shards=25, benchmarks_names_to_run=_ANDROID_GO_BENCHMARK_NAMES)
ANDROID_NEXUS_5 = PerfPlatform( ANDROID_NEXUS_5 = PerfPlatform(
'Android Nexus5 Perf', 'Android KOT49H', 'Android Nexus5 Perf', 'Android KOT49H',
num_shards=16) num_shards=16)
...@@ -165,10 +169,6 @@ ANDROID_PIXEL2_WEBVIEW = PerfPlatform( ...@@ -165,10 +169,6 @@ ANDROID_PIXEL2_WEBVIEW = PerfPlatform(
'android-pixel2_webview-perf', 'Android OPM1.171019.021', is_fyi=True, 'android-pixel2_webview-perf', 'Android OPM1.171019.021', is_fyi=True,
num_shards=7) num_shards=7)
ANDROID_GO_WEBVIEW = PerfPlatform(
'android-go_webview-perf', 'Android OPM1.171019.021', is_fyi=True,
num_shards=25, benchmarks_names_to_run=_ANDROID_GO_BENCHMARK_NAMES)
ANDROID_NEXUS5X_PERF_FYI = PerfPlatform( ANDROID_NEXUS5X_PERF_FYI = PerfPlatform(
'android-nexus5x-perf-fyi', 'Android MMB29Q', is_fyi=True, 'android-nexus5x-perf-fyi', 'Android MMB29Q', is_fyi=True,
num_shards=4, benchmarks_names_to_run={ num_shards=4, benchmarks_names_to_run={
......
...@@ -108,25 +108,6 @@ NEW_PERF_RECIPE_FYI_TESTERS = { ...@@ -108,25 +108,6 @@ NEW_PERF_RECIPE_FYI_TESTERS = {
'device_os_flavor': 'google', 'device_os_flavor': 'google',
}, },
}, },
'android-go_webview-perf': {
'tests': [
{
'isolate': 'performance_webview_test_suite',
'extra_args': [
'--test-shard-map-filename=android-go_webview-perf_map.json',
],
'num_shards': 25
}
],
'platform': 'android-webview-google',
'dimension': {
'pool': 'chrome.tests.perf-webview',
'os': 'Android',
'device_type': 'gobo',
'device_os': 'O',
'device_os_flavor': 'google',
},
}
} }
} }
...@@ -156,6 +137,25 @@ NEW_PERF_RECIPE_MIGRATED_TESTERS = { ...@@ -156,6 +137,25 @@ NEW_PERF_RECIPE_MIGRATED_TESTERS = {
'os': 'Android', 'os': 'Android',
}, },
}, },
'android-go_webview-perf': {
'tests': [
{
'isolate': 'performance_webview_test_suite',
'extra_args': [
'--test-shard-map-filename=android-go_webview-perf_map.json',
],
'num_shards': 25
}
],
'platform': 'android-webview-google',
'dimension': {
'pool': 'chrome.tests.perf-webview',
'os': 'Android',
'device_type': 'gobo',
'device_os': 'O',
'device_os_flavor': 'google',
},
},
'android-nexus5x-perf': { 'android-nexus5x-perf': {
'tests': [ 'tests': [
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment