Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 1 | # Describes the tasks we run in the continuous integration (CI) environment. |
| 2 | # |
| 3 | # Cocoon[1] uses this file to generate a checklist of tasks to be performed for |
| 4 | # every master commit. |
| 5 | # |
| 6 | # [1] github.com/flutter/cocoon |
| 7 | |
| 8 | # CI tasks. |
| 9 | # |
| 10 | # Each key in this dictionary is the unique name of a task, which also |
| 11 | # corresponds to a file in the "bin/" directory that the task runner will run. |
| 12 | # |
Yegor | d538c11 | 2017-04-06 16:27:29 -0700 | [diff] [blame] | 13 | # Required properties: |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 14 | # |
Yegor | d538c11 | 2017-04-06 16:27:29 -0700 | [diff] [blame] | 15 | # * description: free form string |
| 16 | # describes what the task is about |
| 17 | # * stage: one of "devicelab", "devicelab_ios", "devicelab_win" |
| 18 | # tasks are grouped by stage so they appear next to each on the dashboard and have a distinct |
| 19 | # icon attached to them. Stages can be used to create dependencies, e.g. we may decide to not |
Greg Spencer | e60087a | 2018-08-07 13:41:33 -0700 | [diff] [blame] | 20 | # run device tests on red Cirrus builds. |
Yegor | d538c11 | 2017-04-06 16:27:29 -0700 | [diff] [blame] | 21 | # * required_agent_capabilities: a list of strings |
| 22 | # list of capabilities a devicelab agent must have to be able to run this task. |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 23 | # |
Yegor | d538c11 | 2017-04-06 16:27:29 -0700 | [diff] [blame] | 24 | # Optional properties: |
| 25 | # |
| 26 | # * flaky: boolean true or false |
| 27 | # whether the task is considered flaky; the result of running a flaky task does not affect |
Ian Hickson | bc32847 | 2017-05-11 08:59:10 -0700 | [diff] [blame] | 28 | # the overall build status. Tests should be marked flaky when newly added, until they have |
| 29 | # been proved for a few cycles. Tests that are actually flaky but not being actively worked |
| 30 | # on should be hidden because they just cause confusion otherwise. |
Yegor | d538c11 | 2017-04-06 16:27:29 -0700 | [diff] [blame] | 31 | # * timeout_in_minutes: integer |
| 32 | # a custom task timeout, specified in minutes. |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 33 | |
| 34 | tasks: |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 35 | # Tests of compiling in a variety of modes |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 36 | |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 37 | complex_layout_android__compile: |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 38 | description: > |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 39 | Collects various performance metrics of compiling the Complex |
| 40 | Layout sample app for Android from Linux. |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 41 | stage: devicelab |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 42 | required_agent_capabilities: ["linux/android"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 43 | |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 44 | complex_layout_ios__compile: |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 45 | description: > |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 46 | Collects various performance metrics of compiling the Complex |
| 47 | Layout sample app for iOS from Mac. |
| 48 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 49 | required_agent_capabilities: ["mac/ios"] |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 50 | |
| 51 | complex_layout_win__compile: |
| 52 | description: > |
| 53 | Collects various performance metrics of compiling the Complex |
| 54 | Layout for Android from Windows. |
| 55 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 56 | required_agent_capabilities: ["windows/android"] |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 57 | |
| 58 | basic_material_app_android__compile: |
| 59 | description: > |
| 60 | Collects various performance metrics of compiling the default |
| 61 | app for Android from Linux. |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 62 | stage: devicelab |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 63 | required_agent_capabilities: ["linux/android"] |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 64 | |
| 65 | basic_material_app_ios__compile: |
| 66 | description: > |
| 67 | Collects various performance metrics of compiling the default |
| 68 | app for iOS from Mac. |
| 69 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 70 | required_agent_capabilities: ["mac/ios"] |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 71 | |
| 72 | basic_material_app_win__compile: |
| 73 | description: > |
| 74 | Collects various performance metrics of compiling the default |
| 75 | app for Android from Windows. |
| 76 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 77 | required_agent_capabilities: ["windows/android"] |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 78 | |
Jonah Williams | 43e7c55 | 2019-09-02 01:17:26 -0700 | [diff] [blame] | 79 | # TODO(jonahwilliams): re-enable with https://github.com/flutter/flutter/issues/39597 |
| 80 | # codegen_integration_win: |
| 81 | # description: > |
| 82 | # Runs codegeneration and verifies that it can execute |
| 83 | # correctly. |
| 84 | # stage: devicelab_win |
| 85 | # required_agent_capabilities: ["windows/android"] |
Jonah Williams | 67cf215 | 2019-02-14 23:17:16 -0800 | [diff] [blame] | 86 | |
Jonah Williams | d4a441a | 2019-03-08 12:25:35 -0800 | [diff] [blame] | 87 | codegen_integration_mac: |
| 88 | description: > |
| 89 | Runs codegeneration and verifies that it can execute |
| 90 | correctly. |
| 91 | stage: devicelab_ios |
| 92 | required_agent_capabilities: ["mac/ios"] |
Jonah Williams | d4a441a | 2019-03-08 12:25:35 -0800 | [diff] [blame] | 93 | |
Jonah Williams | b80e6bb | 2019-10-17 19:21:52 -0700 | [diff] [blame] | 94 | codegen_integration_linux: |
| 95 | description: > |
| 96 | Runs codegeneration and verifies that it can execute |
| 97 | correctly. |
| 98 | stage: devicelab |
| 99 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | d4a441a | 2019-03-08 12:25:35 -0800 | [diff] [blame] | 100 | |
Jonah Williams | b80e6bb | 2019-10-17 19:21:52 -0700 | [diff] [blame] | 101 | uncaught_image_error_linux: |
| 102 | description: > |
| 103 | Ensures that an error thrown into the zone can be caught by the ImageStream |
| 104 | completer |
| 105 | stage: devicelab |
| 106 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | 1bfa2f2 | 2019-03-29 10:05:18 -0700 | [diff] [blame] | 107 | |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 108 | flutter_gallery_android__compile: |
| 109 | description: > |
| 110 | Collects various performance metrics of compiling the Flutter |
| 111 | Gallery for Android from Linux. |
| 112 | stage: devicelab |
| 113 | required_agent_capabilities: ["linux/android"] |
| 114 | |
| 115 | flutter_gallery_ios__compile: |
| 116 | description: > |
| 117 | Collects various performance metrics of compiling the Flutter |
| 118 | Gallery for iOS from Mac. |
| 119 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 120 | required_agent_capabilities: ["mac/ios"] |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 121 | |
| 122 | flutter_gallery_win__compile: |
| 123 | description: > |
| 124 | Collects various performance metrics of compiling the Flutter |
| 125 | Gallery for Android from Windows. |
| 126 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 127 | required_agent_capabilities: ["windows/android"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 128 | |
Jonah Williams | e778686 | 2019-10-29 13:23:27 -0700 | [diff] [blame] | 129 | windows_chrome_dev_mode: |
| 130 | description: > |
| 131 | Run flutter web on the devicelab and hot restart. |
| 132 | stage: devicelab_win |
| 133 | required_agent_capabilities: ["windows/android"] |
| 134 | flaky: true |
Jonah Williams | 83986ac | 2019-06-03 23:19:42 -0700 | [diff] [blame] | 135 | |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 136 | # Android on-device tests |
| 137 | |
| 138 | complex_layout_scroll_perf__timeline_summary: |
| 139 | description: > |
| 140 | Measures the runtime performance of the Complex Layout sample app on |
| 141 | Android. |
| 142 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 143 | required_agent_capabilities: ["mac/android"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 144 | |
liyuqian | b6cd38d | 2018-08-02 16:47:58 -0700 | [diff] [blame] | 145 | tiles_scroll_perf__timeline_summary: |
| 146 | description: > |
| 147 | Measures the runtime performance of the tiles tab in the Complex Layout sample app on Android. |
| 148 | stage: devicelab |
liyuqian | b6cd38d | 2018-08-02 16:47:58 -0700 | [diff] [blame] | 149 | required_agent_capabilities: ["mac/android"] |
| 150 | |
liyuqian | de321b9 | 2019-02-04 22:54:11 -0800 | [diff] [blame] | 151 | home_scroll_perf__timeline_summary: |
| 152 | description: > |
| 153 | Measures the runtime performance of scrolling the material page in the |
| 154 | flutter_gallery app on Android. |
| 155 | stage: devicelab |
| 156 | required_agent_capabilities: ["mac/android"] |
liyuqian | de321b9 | 2019-02-04 22:54:11 -0800 | [diff] [blame] | 157 | |
liyuqian | eb30745 | 2019-04-09 18:55:42 -0700 | [diff] [blame] | 158 | drive_perf_debug_warning: |
| 159 | description: > |
| 160 | Check that driver will print warnings when traceAction is called in debug mode. |
| 161 | stage: devicelab |
| 162 | required_agent_capabilities: ["mac/android"] |
liyuqian | eb30745 | 2019-04-09 18:55:42 -0700 | [diff] [blame] | 163 | |
liyuqian | 8ad4cbe | 2018-12-17 22:01:07 -0800 | [diff] [blame] | 164 | cull_opacity_perf__timeline_summary: |
| 165 | description: > |
| 166 | Measures the runtime performance of culling opacity widgets on Android. |
| 167 | stage: devicelab |
| 168 | required_agent_capabilities: ["mac/android"] |
liyuqian | 8ad4cbe | 2018-12-17 22:01:07 -0800 | [diff] [blame] | 169 | |
liyuqian | a32fc98 | 2019-11-19 15:48:41 -0800 | [diff] [blame] | 170 | picture_cache_perf__timeline_summary: |
| 171 | description: > |
| 172 | Measures the runtime performance of raster caching many pictures on Android. |
| 173 | stage: devicelab |
| 174 | required_agent_capabilities: ["mac/android"] |
| 175 | |
liyuqian | 19a6a6f | 2019-02-27 09:33:08 -0800 | [diff] [blame] | 176 | cubic_bezier_perf__timeline_summary: |
| 177 | description: > |
| 178 | Measures the runtime performance of cubic bezier animations on Android. |
| 179 | stage: devicelab |
| 180 | required_agent_capabilities: ["mac/android"] |
liyuqian | 19a6a6f | 2019-02-27 09:33:08 -0800 | [diff] [blame] | 181 | |
Jim Graham | f83fd9d | 2019-06-24 20:53:22 -0700 | [diff] [blame] | 182 | backdrop_filter_perf__timeline_summary: |
| 183 | description: > |
| 184 | Measures the runtime performance of backdrop filter blurs on Android. |
| 185 | stage: devicelab |
| 186 | required_agent_capabilities: ["mac/android"] |
Jim Graham | f83fd9d | 2019-06-24 20:53:22 -0700 | [diff] [blame] | 187 | |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 188 | flavors_test: |
| 189 | description: > |
| 190 | Checks that flavored builds work on Android. |
| 191 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 192 | required_agent_capabilities: ["mac/android"] |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 193 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 194 | channels_integration_test: |
| 195 | description: > |
| 196 | Checks that platform channels work on Android. |
| 197 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 198 | required_agent_capabilities: ["mac/android"] |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 199 | |
Mikkel Nygaard Ravn | d06482c | 2017-11-22 14:16:25 +0100 | [diff] [blame] | 200 | external_ui_integration_test: |
| 201 | description: > |
| 202 | Checks that external UIs work on Android. |
| 203 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 204 | required_agent_capabilities: ["mac/android"] |
Mikkel Nygaard Ravn | d06482c | 2017-11-22 14:16:25 +0100 | [diff] [blame] | 205 | |
amirh | 1f31c3b | 2018-08-23 10:26:00 -0700 | [diff] [blame] | 206 | embedded_android_views_integration_test: |
| 207 | description: > |
| 208 | Tests embedded Android views. |
| 209 | stage: devicelab |
| 210 | required_agent_capabilities: ["mac/android"] |
amirh | 1f31c3b | 2018-08-23 10:26:00 -0700 | [diff] [blame] | 211 | |
Jonah Williams | c6e8a51 | 2018-09-06 12:31:18 -0700 | [diff] [blame] | 212 | android_semantics_integration_test: |
| 213 | description: > |
| 214 | Tests that the Android accessibility bridge produces correct semantics. |
| 215 | stage: devicelab |
| 216 | required_agent_capabilities: ["mac/android"] |
Jonah Williams | c6e8a51 | 2018-09-06 12:31:18 -0700 | [diff] [blame] | 217 | |
Ian Hickson | d1cc8b6 | 2018-06-14 12:30:20 -0700 | [diff] [blame] | 218 | run_release_test: |
| 219 | description: > |
| 220 | Checks that `flutter run --release` does not crash. |
| 221 | stage: devicelab |
| 222 | required_agent_capabilities: ["mac/android"] |
xster | 74af855 | 2019-12-17 07:38:01 -0800 | [diff] [blame] | 223 | flaky: true # https://github.com/flutter/flutter/issues/45416. |
Ian Hickson | d1cc8b6 | 2018-06-14 12:30:20 -0700 | [diff] [blame] | 224 | |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 225 | platform_interaction_test: |
| 226 | description: > |
| 227 | Checks platform interaction on Android. |
| 228 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 229 | required_agent_capabilities: ["mac/android"] |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 230 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 231 | platform_channel_sample_test: |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 232 | description: > |
Sarah Zakarias | d274888 | 2017-03-27 11:17:31 +0200 | [diff] [blame] | 233 | Runs a driver test on the Platform Channel sample app on Android. |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 234 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 235 | required_agent_capabilities: ["mac/android"] |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 236 | |
Sarah Zakarias | a3e71bf | 2018-05-16 13:24:47 +0200 | [diff] [blame] | 237 | platform_view__start_up: |
| 238 | description: > |
| 239 | Verifies that Platform View can be used from an Android project. |
| 240 | stage: devicelab |
| 241 | required_agent_capabilities: ["mac/android"] |
| 242 | |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 243 | complex_layout__start_up: |
| 244 | description: > |
| 245 | Measures the startup time of the Complex Layout sample app on Android. |
| 246 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 247 | required_agent_capabilities: ["mac/android"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 248 | |
Yegor | 921287b | 2016-09-19 10:03:26 -0700 | [diff] [blame] | 249 | hot_mode_dev_cycle__benchmark: |
| 250 | description: > |
| 251 | Measures the performance of Dart VM hot patching feature. |
| 252 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 253 | required_agent_capabilities: ["mac/android"] |
Yegor | 921287b | 2016-09-19 10:03:26 -0700 | [diff] [blame] | 254 | |
Jason Simmons | 4da4ca8 | 2016-12-01 11:37:16 -0800 | [diff] [blame] | 255 | complex_layout_scroll_perf__memory: |
| 256 | description: > |
| 257 | Measures memory usage of the scroll performance test. |
| 258 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 259 | required_agent_capabilities: ["mac/android"] |
Jason Simmons | 4da4ca8 | 2016-12-01 11:37:16 -0800 | [diff] [blame] | 260 | |
Michael Goderbauer | ebb174b | 2018-06-16 00:08:33 -0700 | [diff] [blame] | 261 | hello_world_android__compile: |
| 262 | description: > |
| 263 | Measures the APK size of Hello World. |
| 264 | stage: devicelab |
| 265 | required_agent_capabilities: ["mac/android"] |
| 266 | |
Yegor | d7c2151 | 2016-12-02 16:50:27 -0800 | [diff] [blame] | 267 | hello_world__memory: |
| 268 | description: > |
| 269 | Measures starting memory usage of the simplest Flutter app. |
| 270 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 271 | required_agent_capabilities: ["mac/android"] |
Yegor | d7c2151 | 2016-12-02 16:50:27 -0800 | [diff] [blame] | 272 | |
Todd Volkert | 0f62519 | 2019-07-18 11:13:14 -0700 | [diff] [blame] | 273 | # hello_world__start_up: |
| 274 | # description: > |
| 275 | # Verifies that Hello World can start on an array of devices. |
| 276 | # stage: devicelab |
| 277 | # required_agent_capabilities: ["linux/android_esoteric"] |
| 278 | |
Yegor | 1df639b | 2017-01-09 14:57:14 -0800 | [diff] [blame] | 279 | microbenchmarks: |
| 280 | description: > |
| 281 | Runs benchmarks from dev/benchmarks/microbenchmarks. |
| 282 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 283 | required_agent_capabilities: ["mac/android"] |
Yegor | 57ca2b5 | 2017-04-06 10:48:45 -0700 | [diff] [blame] | 284 | timeout_in_minutes: 30 |
Yegor | 1df639b | 2017-01-09 14:57:14 -0800 | [diff] [blame] | 285 | |
Sarah Zakarias | 18db5a2 | 2017-03-23 13:20:00 +0100 | [diff] [blame] | 286 | flutter_view__start_up: |
| 287 | description: > |
| 288 | Verifies that Flutter View can be used from an Android project. |
| 289 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 290 | required_agent_capabilities: ["mac/android"] |
Sarah Zakarias | 18db5a2 | 2017-03-23 13:20:00 +0100 | [diff] [blame] | 291 | |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 292 | integration_ui: |
| 293 | description: > |
| 294 | Runs end-to-end Flutter tests on Android. |
| 295 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 296 | required_agent_capabilities: ["mac/android"] |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 297 | |
Ian Hickson | e1adc52 | 2017-07-19 12:57:22 -0700 | [diff] [blame] | 298 | commands_test: |
| 299 | description: > |
| 300 | Runs tests of flutter run commands. |
| 301 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 302 | required_agent_capabilities: ["mac/android"] |
Ian Hickson | e1adc52 | 2017-07-19 12:57:22 -0700 | [diff] [blame] | 303 | |
Danny Tuppeny | efb88a0 | 2018-02-07 16:58:23 +0000 | [diff] [blame] | 304 | run_machine_concurrent_hot_reload: |
| 305 | description: > |
| 306 | Runs tests of concurrent hot reload commands via flutter run --machine. |
| 307 | stage: devicelab |
| 308 | required_agent_capabilities: ["mac/android"] |
| 309 | |
Devon Carew | 8c36ccf | 2017-08-31 11:38:21 -0700 | [diff] [blame] | 310 | service_extensions_test: |
| 311 | description: > |
| 312 | Validates our service protocol extensions. |
| 313 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 314 | required_agent_capabilities: ["mac/android"] |
Devon Carew | 8c36ccf | 2017-08-31 11:38:21 -0700 | [diff] [blame] | 315 | |
Hans Muller | b4e41ff | 2017-05-25 11:47:36 -0700 | [diff] [blame] | 316 | android_sample_catalog_generator: |
| 317 | description: > |
| 318 | Builds sample catalog markdown pages and Android screenshots |
| 319 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 320 | required_agent_capabilities: ["mac/android"] |
Hans Muller | b4e41ff | 2017-05-25 11:47:36 -0700 | [diff] [blame] | 321 | |
Jonah Williams | 08d079f | 2020-02-27 08:58:33 -0800 | [diff] [blame] | 322 | android_obfuscate_test: |
| 323 | description: > |
| 324 | Builds an obfuscated APK and verifies a dart identifier cannot be found |
| 325 | stage: devicelab |
| 326 | flaky: true |
| 327 | required_agent_capabilities: ["linux/android"] |
| 328 | |
Michael Goderbauer | 8bf1719 | 2017-06-13 12:49:07 -0700 | [diff] [blame] | 329 | complex_layout_semantics_perf: |
| 330 | description: > |
| 331 | Measures duration of building the initial semantics tree. |
| 332 | stage: devicelab |
| 333 | required_agent_capabilities: ["linux/android"] |
Ian Hickson | 9adb4a7 | 2017-06-23 14:58:29 -0700 | [diff] [blame] | 334 | |
Ian Hickson | bbea0c3 | 2017-06-23 18:13:40 -0700 | [diff] [blame] | 335 | routing_test: |
Ian Hickson | 9adb4a7 | 2017-06-23 14:58:29 -0700 | [diff] [blame] | 336 | description: > |
| 337 | Verifies that `flutter drive --route` still works. No performance numbers. |
| 338 | stage: devicelab |
| 339 | required_agent_capabilities: ["linux/android"] |
Michael Goderbauer | 8bf1719 | 2017-06-13 12:49:07 -0700 | [diff] [blame] | 340 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 341 | # flutter_gallery_instrumentation_test: |
| 342 | # description: > |
| 343 | # Same as flutter_gallery__transition_perf but uses Android instrumentation |
| 344 | # framework, and therefore does not require a host computer to run. This |
| 345 | # test can run on off-the-shelf infrastructures, such as Firebase Test Lab. |
| 346 | # stage: devicelab |
| 347 | # required_agent_capabilities: ["linux/android"] |
| 348 | # flaky: true |
Yegor | 18d9b20 | 2017-07-10 17:20:49 -0700 | [diff] [blame] | 349 | |
Emmanuel Garcia | fca5917 | 2020-01-10 14:38:01 -0800 | [diff] [blame] | 350 | flutter_attach_test_android: |
Florian Loitsch | d248725 | 2018-06-25 15:33:42 +0200 | [diff] [blame] | 351 | description: > |
| 352 | Tests the `flutter attach` command. |
| 353 | stage: devicelab |
| 354 | required_agent_capabilities: ["linux/android"] |
| 355 | |
Michael Klimushyn | ce43402 | 2018-10-24 11:44:45 -0700 | [diff] [blame] | 356 | named_isolates_test: |
| 357 | description: > |
| 358 | Tests naming and attaching to specific isolates. |
| 359 | stage: devicelab |
| 360 | required_agent_capabilities: ["linux/android"] |
Michael Klimushyn | ce43402 | 2018-10-24 11:44:45 -0700 | [diff] [blame] | 361 | |
Jonah Williams | e778686 | 2019-10-29 13:23:27 -0700 | [diff] [blame] | 362 | linux_chrome_dev_mode: |
| 363 | description: > |
| 364 | Run flutter web on the devicelab and hot restart. |
| 365 | stage: devicelab |
| 366 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | 83986ac | 2019-06-03 23:19:42 -0700 | [diff] [blame] | 367 | |
Jonah Williams | b80e6bb | 2019-10-17 19:21:52 -0700 | [diff] [blame] | 368 | web_size__compile_test: |
| 369 | description: > |
| 370 | Measures the size of a dart2js bundle. |
| 371 | stage: devicelab |
| 372 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | 50ea6f3 | 2019-06-05 12:40:21 -0700 | [diff] [blame] | 373 | |
Alexander Aprelev | 3badcf5 | 2019-06-28 15:14:03 -0700 | [diff] [blame] | 374 | image_list_reported_duration: |
| 375 | description: > |
Alexander Aprelev | 9f285aa | 2019-07-08 08:23:06 -0700 | [diff] [blame] | 376 | Measures image loading performance on release (aot) build. |
| 377 | stage: devicelab |
| 378 | required_agent_capabilities: ["linux/android"] |
Alexander Aprelev | 9f285aa | 2019-07-08 08:23:06 -0700 | [diff] [blame] | 379 | |
| 380 | image_list_jit_reported_duration: |
| 381 | description: > |
| 382 | Measures image loading performance on debug (jit) build. |
Alexander Aprelev | 3badcf5 | 2019-06-28 15:14:03 -0700 | [diff] [blame] | 383 | stage: devicelab |
| 384 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | 50ea6f3 | 2019-06-05 12:40:21 -0700 | [diff] [blame] | 385 | |
Jonah Williams | b80e6bb | 2019-10-17 19:21:52 -0700 | [diff] [blame] | 386 | build_benchmark: |
| 387 | description: > |
| 388 | Measures APK build performance across config changes. |
| 389 | stage: devicelab |
| 390 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | 05b4c67 | 2019-07-03 10:54:04 -0700 | [diff] [blame] | 391 | |
Jonah Williams | 78951b0 | 2019-12-10 15:03:06 -0800 | [diff] [blame] | 392 | time_to_development_benchmark__android: |
| 393 | description: > |
| 394 | Measures time from flutter run until resident runner setup is complete. |
| 395 | stage: devicelab |
| 396 | required_agent_capabilities: ["linux/android"] |
| 397 | |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 398 | # iOS on-device tests |
| 399 | |
Jonah Williams | 08d079f | 2020-02-27 08:58:33 -0800 | [diff] [blame] | 400 | ios_obfuscate_test: |
| 401 | description: > |
| 402 | Builds an obfuscated APK and verifies a dart identifier cannot be found |
| 403 | stage: devicelab |
| 404 | flaky: true |
| 405 | required_agent_capabilities: ["mac/ios"] |
| 406 | |
liyuqian | c1cb680 | 2019-08-28 10:33:43 -0700 | [diff] [blame] | 407 | tiles_scroll_perf_ios__timeline_summary: |
| 408 | description: > |
| 409 | Measures the runtime performance of the tiles tab in the Complex Layout sample app on iPhone 6. |
| 410 | stage: devicelab_ios |
| 411 | required_agent_capabilities: ["mac/ios"] |
| 412 | |
| 413 | tiles_scroll_perf_iphonexs__timeline_summary: |
| 414 | description: > |
| 415 | Measures the runtime performance of the tiles tab in the Complex Layout sample app on iPhone XS. |
| 416 | stage: devicelab_ios |
keyonghan | 0ffecc6 | 2020-02-07 17:24:56 -0800 | [diff] [blame] | 417 | # TODO(keyonghan): change with https://github.com/flutter/flutter/issues/50383 |
| 418 | required_agent_capabilities: ["mac/ios"] |
liyuqian | c1cb680 | 2019-08-28 10:33:43 -0700 | [diff] [blame] | 419 | |
| 420 | flutter_gallery_ios32__start_up: |
| 421 | description: > |
| 422 | Measures the startup time of the Flutter Gallery app on 32-bit iOS (iPhone 4S). |
| 423 | stage: devicelab_ios |
| 424 | required_agent_capabilities: ["mac/ios32"] |
| 425 | |
| 426 | flutter_gallery_ios32__transition_perf: |
| 427 | description: > |
| 428 | Measures the performance of screen transitions in Flutter Gallery on |
| 429 | 32-bit iOS (iPhone 4S). |
| 430 | stage: devicelab_ios |
| 431 | required_agent_capabilities: ["mac/ios32"] |
| 432 | |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 433 | flavors_test_ios: |
| 434 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 435 | Checks that flavored builds work on iPhone 6. |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 436 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 437 | required_agent_capabilities: ["mac/ios"] |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 438 | |
Mikkel Nygaard Ravn | d06482c | 2017-11-22 14:16:25 +0100 | [diff] [blame] | 439 | external_ui_integration_test_ios: |
| 440 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 441 | Checks that external UIs work on iPhone 6. |
Mikkel Nygaard Ravn | dbfd0be | 2017-11-22 15:14:14 +0100 | [diff] [blame] | 442 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 443 | required_agent_capabilities: ["mac/ios"] |
Mikkel Nygaard Ravn | d06482c | 2017-11-22 14:16:25 +0100 | [diff] [blame] | 444 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 445 | channels_integration_test_ios: |
| 446 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 447 | Checks that platform channels work on iPhone 6. |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 448 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 449 | required_agent_capabilities: ["mac/ios"] |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 450 | |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 451 | platform_interaction_test_ios: |
| 452 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 453 | Checks platform interaction on iPhone 6. |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 454 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 455 | required_agent_capabilities: ["mac/ios"] |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 456 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 457 | platform_channel_sample_test_ios: |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 458 | description: > |
Jenn Magder | b5c1b61 | 2019-07-10 14:13:01 -0700 | [diff] [blame] | 459 | Runs a driver test on the Platform Channel sample app on iPhone 6 Objective-C project. |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 460 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 461 | required_agent_capabilities: ["mac/ios"] |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 462 | |
Jenn Magder | b5c1b61 | 2019-07-10 14:13:01 -0700 | [diff] [blame] | 463 | platform_channel_sample_test_swift: |
| 464 | description: > |
| 465 | Runs a driver test on the Platform Channel sample app on iPhone 6 Swift project. |
| 466 | stage: devicelab_ios |
| 467 | required_agent_capabilities: ["mac/ios"] |
Jenn Magder | b5c1b61 | 2019-07-10 14:13:01 -0700 | [diff] [blame] | 468 | |
Sarah Zakarias | a3e71bf | 2018-05-16 13:24:47 +0200 | [diff] [blame] | 469 | platform_view_ios__start_up: |
| 470 | description: > |
| 471 | Verifies that Platform View can be used from an iOS project. |
| 472 | stage: devicelab_ios |
| 473 | required_agent_capabilities: ["mac/ios"] |
| 474 | |
liyuqian | bbcfdea | 2019-08-20 10:39:29 -0700 | [diff] [blame] | 475 | backdrop_filter_perf_ios__timeline_summary: |
| 476 | description: > |
| 477 | Measures the runtime performance of backdrop filter blurs on iOS. |
| 478 | stage: devicelab_ios |
| 479 | required_agent_capabilities: ["mac/ios"] |
liyuqian | bbcfdea | 2019-08-20 10:39:29 -0700 | [diff] [blame] | 480 | |
Dan Field | 9348aea | 2020-02-07 13:51:24 -0800 | [diff] [blame] | 481 | # post_backdrop_filter_perf_ios__timeline_summary: |
| 482 | # description: > |
| 483 | # Measures the runtime performance of animations after a backdrop filter is removed on iOS. |
| 484 | # stage: devicelab_ios |
| 485 | # required_agent_capabilities: ["mac/iphonexs"] |
Jim Graham | fa190a8 | 2019-12-13 13:27:53 -0800 | [diff] [blame] | 486 | |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 487 | complex_layout_scroll_perf_ios__timeline_summary: |
| 488 | description: > |
| 489 | Measures the runtime performance of the Complex Layout sample app on |
| 490 | iOS. |
| 491 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 492 | required_agent_capabilities: ["mac/ios"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 493 | |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 494 | flutter_gallery_ios__start_up: |
| 495 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 496 | Measures the startup time of the Flutter Gallery app on iPhone 6. |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 497 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 498 | required_agent_capabilities: ["mac/ios"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 499 | |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 500 | complex_layout_ios__start_up: |
| 501 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 502 | Measures the startup time of the Complex Layout sample app on iPhone 6. |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 503 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 504 | required_agent_capabilities: ["mac/ios"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 505 | |
Chris Bracken | abfee82 | 2017-03-29 19:19:57 -0700 | [diff] [blame] | 506 | flutter_gallery_ios__transition_perf: |
| 507 | description: > |
| 508 | Measures the performance of screen transitions in Flutter Gallery on |
| 509 | iOS. |
| 510 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 511 | required_agent_capabilities: ["mac/ios"] |
Yegor | 568a6e1 | 2016-12-05 12:46:59 -0800 | [diff] [blame] | 512 | |
Michael Goderbauer | ebb174b | 2018-06-16 00:08:33 -0700 | [diff] [blame] | 513 | hello_world_ios__compile: |
| 514 | description: > |
| 515 | Measures the IPA size of Hello World. |
Todd Volkert | 083022b | 2019-08-16 15:34:56 -0700 | [diff] [blame] | 516 | stage: devicelab_ios |
Michael Goderbauer | ebb174b | 2018-06-16 00:08:33 -0700 | [diff] [blame] | 517 | required_agent_capabilities: ["mac/ios"] |
| 518 | |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 519 | microbenchmarks_ios: |
| 520 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 521 | Runs benchmarks from dev/benchmarks/microbenchmarks on iPhone 6. |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 522 | stage: devicelab_ios |
godofredoc | 374b55c | 2020-02-05 09:17:13 -0800 | [diff] [blame] | 523 | #TODO(godofredoc): Remove ios/12 capability once |
| 524 | # https://github.com/flutter/flutter/issues/49635 is fixed. |
| 525 | required_agent_capabilities: ["mac/ios", "ios/12"] |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 526 | timeout_in_minutes: 30 |
Michael Goderbauer | 79002c7 | 2017-03-16 13:47:14 -0700 | [diff] [blame] | 527 | |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 528 | flutter_view_ios__start_up: |
| 529 | description: > |
| 530 | Verifies that Flutter View can be used from an iOS project. |
| 531 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 532 | required_agent_capabilities: ["mac/ios"] |
Sarah Zakarias | 47fc81f | 2017-03-24 11:45:57 +0100 | [diff] [blame] | 533 | |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 534 | integration_ui_ios: |
| 535 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 536 | Runs end-to-end Flutter tests on iPhone 6. |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 537 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 538 | required_agent_capabilities: ["mac/ios"] |
Yegor | a90a850 | 2018-04-20 13:57:06 -0700 | [diff] [blame] | 539 | timeout_in_minutes: 20 |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 540 | |
Chris Yang | 4a00496 | 2019-12-10 12:43:36 -0800 | [diff] [blame] | 541 | flutter_driver_screenshot_test_ios: |
| 542 | description: > |
| 543 | Screenshot tests running on a specifc iPhone 6. |
| 544 | The test makes sure that there is no regression while renderring an image with gl on iOS. |
| 545 | stage: devicelab_ios |
| 546 | required_agent_capabilities: ["mac/ios", "ios/gl-render-image"] |
Chris Bracken | f3018c3 | 2020-03-02 09:45:24 -0800 | [diff] [blame] | 547 | #TODO(cyanglaz): The flaky flag is added because it is the first screenshot test we added. |
| 548 | # Remove the flaky flag when we are sure the test is stable. |
| 549 | flaky: true |
Chris Yang | 4a00496 | 2019-12-10 12:43:36 -0800 | [diff] [blame] | 550 | |
Christopher Fujino | 18ff9a2 | 2019-10-18 12:28:46 -0700 | [diff] [blame] | 551 | # TODO(fujino): does not pass on iOS13 https://github.com/flutter/flutter/issues/41133 |
| 552 | # system_debug_ios: |
| 553 | # description: > |
| 554 | # Tests that the Engine correctly initializes the system debugger for debug-mode iOS apps. |
| 555 | # stage: devicelab_ios |
| 556 | # required_agent_capabilities: ["mac/ios"] |
| 557 | # timeout_in_minutes: 10 |
sjindel-google | 0564f0a | 2019-08-06 20:08:09 +0200 | [diff] [blame] | 558 | |
Hans Muller | b4e41ff | 2017-05-25 11:47:36 -0700 | [diff] [blame] | 559 | ios_sample_catalog_generator: |
| 560 | description: > |
| 561 | Builds sample catalog markdown pages and iOS screenshots |
| 562 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 563 | required_agent_capabilities: ["mac/ios"] |
Hans Muller | b4e41ff | 2017-05-25 11:47:36 -0700 | [diff] [blame] | 564 | |
Jonah Williams | e778686 | 2019-10-29 13:23:27 -0700 | [diff] [blame] | 565 | macos_chrome_dev_mode: |
| 566 | description: > |
| 567 | Run flutter web on the devicelab and hot restart. |
| 568 | stage: devicelab_ios |
| 569 | required_agent_capabilities: ["mac/ios"] |
| 570 | flaky: true # marked as flaky while infra is under heavy development |
Jonah Williams | 83986ac | 2019-06-03 23:19:42 -0700 | [diff] [blame] | 571 | |
Jonah Williams | 91e3b2d | 2019-07-08 18:09:00 -0700 | [diff] [blame] | 572 | build_benchmark_ios: |
| 573 | description: > |
| 574 | Measures iOS build performance across config changes. |
| 575 | stage: devicelab_ios |
| 576 | required_agent_capabilities: ["mac/ios"] |
Jonah Williams | 91e3b2d | 2019-07-08 18:09:00 -0700 | [diff] [blame] | 577 | |
Dan Field | 9348aea | 2020-02-07 13:51:24 -0800 | [diff] [blame] | 578 | # simple_animation_perf_iphonexs: |
| 579 | # description: > |
| 580 | # Measure CPU/GPU usage percentages of a simple animation. |
| 581 | # stage: devicelab_ios |
| 582 | # required_agent_capabilities: ["mac/iphonexs"] |
liyuqian | 9cc29c6 | 2019-09-29 11:33:43 -0700 | [diff] [blame] | 583 | |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 584 | smoke_catalina_start_up_ios: |
Tong Wu | b38302b | 2019-08-27 11:22:54 -0700 | [diff] [blame] | 585 | description: > |
| 586 | A smoke test that runs on macOS Catalina, which is a clone of the Gallery startup latency test. |
Tong Wu | 2f58d08 | 2019-08-27 12:27:12 -0700 | [diff] [blame] | 587 | stage: devicelab_ios |
| 588 | required_agent_capabilities: ["mac-catalina/ios"] |
Tong Wu | b38302b | 2019-08-27 11:22:54 -0700 | [diff] [blame] | 589 | |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 590 | smoke_catalina_hot_mode_dev_cycle_ios__benchmark: |
Tong Wu | b38302b | 2019-08-27 11:22:54 -0700 | [diff] [blame] | 591 | description: > |
| 592 | A some test that runs on macOS Catalina, which is a clone of the Dart VM hot patching performance benchmarking. |
Tong Wu | 2f58d08 | 2019-08-27 12:27:12 -0700 | [diff] [blame] | 593 | stage: devicelab_ios |
Tong Wu | 2f58d08 | 2019-08-27 12:27:12 -0700 | [diff] [blame] | 594 | required_agent_capabilities: ["mac-catalina/ios"] |
Tong Wu | b38302b | 2019-08-27 11:22:54 -0700 | [diff] [blame] | 595 | |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 596 | smoke_catalina_start_up: |
| 597 | description: > |
| 598 | A smoke test that runs on macOS Catalina, which is a clone of the Gallery startup latency test. |
| 599 | stage: devicelab |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 600 | required_agent_capabilities: ["mac-catalina/android"] |
| 601 | |
| 602 | smoke_catalina_hot_mode_dev_cycle__benchmark: |
| 603 | description: > |
| 604 | A some test that runs on macOS Catalina, which is a clone of the Dart VM hot patching performance benchmarking. |
| 605 | stage: devicelab |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 606 | required_agent_capabilities: ["mac-catalina/android"] |
| 607 | |
Jonah Williams | 0e36a91 | 2019-11-20 12:35:53 -0800 | [diff] [blame] | 608 | # macOS target platform tests |
| 609 | hot_mode_dev_cycle_macos_target__benchmark: |
| 610 | description: > |
| 611 | Checks the functionality and performance of hot reload on a macOS target platform |
| 612 | stage: devicelab |
| 613 | required_agent_capabilities: ["mac/ios"] |
Jonah Williams | 0e36a91 | 2019-11-20 12:35:53 -0800 | [diff] [blame] | 614 | |
Michael Goderbauer | 79002c7 | 2017-03-16 13:47:14 -0700 | [diff] [blame] | 615 | # Tests running on Windows host |
| 616 | |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 617 | flavors_test_win: |
| 618 | description: > |
| 619 | Checks that flavored builds work on Windows. |
| 620 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 621 | required_agent_capabilities: ["windows/android"] |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 622 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 623 | channels_integration_test_win: |
| 624 | description: > |
| 625 | Checks that platform channels work when app is launched from Windows. |
| 626 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 627 | required_agent_capabilities: ["windows/android"] |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 628 | |
Mikkel Nygaard Ravn | 2000435 | 2018-02-16 10:17:28 +0100 | [diff] [blame] | 629 | plugin_test_win: |
| 630 | description: > |
| 631 | Checks that the project template works and supports plugins on Windows. |
| 632 | stage: devicelab_win |
| 633 | required_agent_capabilities: ["windows/android"] |
Mikkel Nygaard Ravn | 2000435 | 2018-02-16 10:17:28 +0100 | [diff] [blame] | 634 | |
Michael Goderbauer | 506aea0 | 2017-03-28 14:22:03 -0700 | [diff] [blame] | 635 | hot_mode_dev_cycle_win__benchmark: |
| 636 | description: > |
| 637 | Measures the performance of Dart VM hot patching feature on Windows. |
| 638 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 639 | required_agent_capabilities: ["windows/android"] |
Yegor | 7397bb9 | 2017-05-31 12:43:18 -0700 | [diff] [blame] | 640 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 641 | # run_without_leak_win: |
| 642 | # description: > |
| 643 | # Checks that `flutter run` does not leak dart.exe on Windows. |
| 644 | # stage: devicelab_win |
| 645 | # required_agent_capabilities: ["windows/android"] |
Dan Field | ecfdd7e | 2019-03-22 14:32:36 -0700 | [diff] [blame] | 646 | |
Yegor | 7397bb9 | 2017-05-31 12:43:18 -0700 | [diff] [blame] | 647 | # Tests running on Linux hosts |
| 648 | |
| 649 | hot_mode_dev_cycle_linux__benchmark: |
| 650 | description: > |
| 651 | Measures the performance of Dart VM hot patching feature on a Linux host. |
| 652 | stage: devicelab |
| 653 | required_agent_capabilities: ["linux/android"] |
Yegor | 7397bb9 | 2017-05-31 12:43:18 -0700 | [diff] [blame] | 654 | |
Ian Hickson | 3ecd430 | 2018-06-26 17:34:25 -0700 | [diff] [blame] | 655 | flutter_test_performance: |
| 656 | description: > |
| 657 | Measures performance of running flutter test. |
| 658 | stage: devicelab |
| 659 | required_agent_capabilities: ["linux/android"] |
Ian Hickson | 3ecd430 | 2018-06-26 17:34:25 -0700 | [diff] [blame] | 660 | |
Ian Hickson | be79379 | 2019-10-17 19:32:31 -0700 | [diff] [blame] | 661 | dartdocs: |
| 662 | description: > |
| 663 | Tracks how many members are still lacking documentation. |
| 664 | stage: devicelab |
godofredoc | 4c4cdbf | 2019-12-02 19:45:04 -0800 | [diff] [blame] | 665 | required_agent_capabilities: ["linux-vm"] |
Ian Hickson | be79379 | 2019-10-17 19:32:31 -0700 | [diff] [blame] | 666 | |
Yegor | 7397bb9 | 2017-05-31 12:43:18 -0700 | [diff] [blame] | 667 | technical_debt__cost: |
| 668 | description: > |
| 669 | Estimates our technical debt (TODOs, analyzer ignores, etc). |
| 670 | stage: devicelab |
godofredoc | 1657075 | 2019-12-04 16:26:41 -0800 | [diff] [blame] | 671 | required_agent_capabilities: ["linux-vm"] |
Yegor | 06deba2 | 2017-05-31 15:13:08 -0700 | [diff] [blame] | 672 | |
Yegor | 06deba2 | 2017-05-31 15:13:08 -0700 | [diff] [blame] | 673 | flutter_gallery__start_up: |
| 674 | description: > |
| 675 | Measures the startup time of the Flutter Gallery app on Android. |
| 676 | stage: devicelab |
| 677 | required_agent_capabilities: ["linux/android"] |
| 678 | |
| 679 | flutter_gallery__transition_perf: |
| 680 | description: > |
| 681 | Measures the performance of screen transitions in Flutter Gallery on |
| 682 | Android. |
| 683 | stage: devicelab |
| 684 | required_agent_capabilities: ["linux/android"] |
| 685 | |
Michael Goderbauer | e2d4f92 | 2017-06-14 08:09:05 -0700 | [diff] [blame] | 686 | flutter_gallery__transition_perf_with_semantics: |
| 687 | description: > |
| 688 | Measures the delta in performance of screen transitions without and |
| 689 | with semantics enabled. |
| 690 | stage: devicelab |
| 691 | required_agent_capabilities: ["linux/android"] |
Michael Goderbauer | e2d4f92 | 2017-06-14 08:09:05 -0700 | [diff] [blame] | 692 | |
Yegor | 06deba2 | 2017-05-31 15:13:08 -0700 | [diff] [blame] | 693 | flutter_gallery__memory_nav: |
| 694 | description: > |
| 695 | Measures memory usage after repeated navigation in Gallery. |
| 696 | stage: devicelab |
| 697 | required_agent_capabilities: ["linux/android"] |
| 698 | |
| 699 | flutter_gallery__back_button_memory: |
| 700 | description: > |
| 701 | Measures memory usage after Android app suspend and resume. |
| 702 | stage: devicelab |
| 703 | required_agent_capabilities: ["linux/android"] |
Yegor | fde985b | 2017-06-13 13:14:16 -0700 | [diff] [blame] | 704 | |
Kaushik Iska | 92bfc99 | 2019-06-04 12:32:52 -0700 | [diff] [blame] | 705 | flutter_gallery__image_cache_memory: |
| 706 | description: > |
| 707 | Measures memory usage for a list of large red squares in smaller containers. |
| 708 | stage: devicelab |
| 709 | required_agent_capabilities: ["linux/android"] |
Kaushik Iska | 92bfc99 | 2019-06-04 12:32:52 -0700 | [diff] [blame] | 710 | |
liyuqian | a2005ea | 2019-12-05 19:28:00 -0800 | [diff] [blame] | 711 | fast_scroll_large_images__memory: |
| 712 | description: > |
| 713 | Measures memory usage for scrolling through a list of large images. |
| 714 | stage: devicelab |
| 715 | required_agent_capabilities: ["mac/android"] |
| 716 | |
Dan Field | d030296 | 2020-02-20 01:51:15 -0800 | [diff] [blame] | 717 | animated_placeholder_perf: |
| 718 | description: > |
| 719 | Measures frame build and rasterizer times, as well as frame build counts |
| 720 | for a grid of images that uses FadeInImage with an animated gif as the |
| 721 | placeholder. |
| 722 | stage: devicelab |
| 723 | required_agent_capabilities: ["linux/android"] |
| 724 | flaky: true |
| 725 | |
Yegor | fde985b | 2017-06-13 13:14:16 -0700 | [diff] [blame] | 726 | analyzer_benchmark: |
| 727 | description: > |
| 728 | Measures the speed of Dart analyzer. |
| 729 | stage: devicelab |
Jonah Williams | 452f255 | 2018-08-13 13:26:32 -0700 | [diff] [blame] | 730 | required_agent_capabilities: ["linux/android"] |
Chris Bracken | 52246c0 | 2018-05-14 15:05:38 -0700 | [diff] [blame] | 731 | |
Yegor | 423459d | 2020-01-30 14:19:17 -0800 | [diff] [blame] | 732 | web_benchmarks_html: |
| 733 | description: > |
| 734 | Runs Web benchmarks on Chrome on a Linux machine using the HTML rendering backend. |
| 735 | stage: devicelab |
| 736 | required_agent_capabilities: ["linux-vm"] |
Yegor | 423459d | 2020-01-30 14:19:17 -0800 | [diff] [blame] | 737 | |
| 738 | web_benchmarks_canvaskit: |
| 739 | description: > |
| 740 | Runs Web benchmarks on Chrome on a Linux machine using the CanvasKit rendering backend. |
| 741 | stage: devicelab |
| 742 | required_agent_capabilities: ["linux-vm"] |
Yegor | 423459d | 2020-01-30 14:19:17 -0800 | [diff] [blame] | 743 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 744 | # run_without_leak_linux: |
| 745 | # description: > |
| 746 | # Checks that `flutter run` does not leak dart on Linux. |
| 747 | # stage: devicelab |
| 748 | # required_agent_capabilities: ["linux/android"] |
| 749 | # flaky: true |
Dan Field | ecfdd7e | 2019-03-22 14:32:36 -0700 | [diff] [blame] | 750 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 751 | # run_without_leak_mac: |
| 752 | # description: > |
| 753 | # Checks that `flutter run` does not leak dart on macOS. |
| 754 | # stage: devicelab |
| 755 | # required_agent_capabilities: ["mac/android"] |
| 756 | # flaky: true |
Matt Carroll | a7387b1 | 2019-07-24 13:44:13 -0700 | [diff] [blame] | 757 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 758 | # android_splash_screen_integration_test: |
| 759 | # description: > |
| 760 | # Runs end-to-end test of Flutter's Android splash behavior. |
| 761 | # stage: devicelab |
| 762 | # required_agent_capabilities: ["linux/android"] |
| 763 | # flaky: true |