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"] |
Ian Hickson | d1cc8b6 | 2018-06-14 12:30:20 -0700 | [diff] [blame] | 223 | |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 224 | platform_interaction_test: |
| 225 | description: > |
| 226 | Checks platform interaction on Android. |
| 227 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 228 | required_agent_capabilities: ["mac/android"] |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 229 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 230 | platform_channel_sample_test: |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 231 | description: > |
Sarah Zakarias | d274888 | 2017-03-27 11:17:31 +0200 | [diff] [blame] | 232 | Runs a driver test on the Platform Channel sample app on Android. |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 233 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 234 | required_agent_capabilities: ["mac/android"] |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 235 | |
Sarah Zakarias | a3e71bf | 2018-05-16 13:24:47 +0200 | [diff] [blame] | 236 | platform_view__start_up: |
| 237 | description: > |
| 238 | Verifies that Platform View can be used from an Android project. |
| 239 | stage: devicelab |
| 240 | required_agent_capabilities: ["mac/android"] |
| 241 | |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 242 | complex_layout__start_up: |
| 243 | description: > |
| 244 | Measures the startup time of the Complex Layout sample app on Android. |
| 245 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 246 | required_agent_capabilities: ["mac/android"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 247 | |
Yegor | 921287b | 2016-09-19 10:03:26 -0700 | [diff] [blame] | 248 | hot_mode_dev_cycle__benchmark: |
| 249 | description: > |
| 250 | Measures the performance of Dart VM hot patching feature. |
| 251 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 252 | required_agent_capabilities: ["mac/android"] |
Yegor | 921287b | 2016-09-19 10:03:26 -0700 | [diff] [blame] | 253 | |
Jason Simmons | 4da4ca8 | 2016-12-01 11:37:16 -0800 | [diff] [blame] | 254 | complex_layout_scroll_perf__memory: |
| 255 | description: > |
| 256 | Measures memory usage of the scroll performance test. |
| 257 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 258 | required_agent_capabilities: ["mac/android"] |
Jason Simmons | 4da4ca8 | 2016-12-01 11:37:16 -0800 | [diff] [blame] | 259 | |
Michael Goderbauer | ebb174b | 2018-06-16 00:08:33 -0700 | [diff] [blame] | 260 | hello_world_android__compile: |
| 261 | description: > |
| 262 | Measures the APK size of Hello World. |
| 263 | stage: devicelab |
| 264 | required_agent_capabilities: ["mac/android"] |
| 265 | |
Yegor | d7c2151 | 2016-12-02 16:50:27 -0800 | [diff] [blame] | 266 | hello_world__memory: |
| 267 | description: > |
| 268 | Measures starting memory usage of the simplest Flutter app. |
| 269 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 270 | required_agent_capabilities: ["mac/android"] |
Yegor | d7c2151 | 2016-12-02 16:50:27 -0800 | [diff] [blame] | 271 | |
Todd Volkert | 0f62519 | 2019-07-18 11:13:14 -0700 | [diff] [blame] | 272 | # hello_world__start_up: |
| 273 | # description: > |
| 274 | # Verifies that Hello World can start on an array of devices. |
| 275 | # stage: devicelab |
| 276 | # required_agent_capabilities: ["linux/android_esoteric"] |
| 277 | |
Yegor | 1df639b | 2017-01-09 14:57:14 -0800 | [diff] [blame] | 278 | microbenchmarks: |
| 279 | description: > |
| 280 | Runs benchmarks from dev/benchmarks/microbenchmarks. |
| 281 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 282 | required_agent_capabilities: ["mac/android"] |
Yegor | 57ca2b5 | 2017-04-06 10:48:45 -0700 | [diff] [blame] | 283 | timeout_in_minutes: 30 |
Yegor | 1df639b | 2017-01-09 14:57:14 -0800 | [diff] [blame] | 284 | |
Sarah Zakarias | 18db5a2 | 2017-03-23 13:20:00 +0100 | [diff] [blame] | 285 | flutter_view__start_up: |
| 286 | description: > |
| 287 | Verifies that Flutter View can be used from an Android project. |
| 288 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 289 | required_agent_capabilities: ["mac/android"] |
Sarah Zakarias | 18db5a2 | 2017-03-23 13:20:00 +0100 | [diff] [blame] | 290 | |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 291 | integration_ui: |
| 292 | description: > |
| 293 | Runs end-to-end Flutter tests on Android. |
| 294 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 295 | required_agent_capabilities: ["mac/android"] |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 296 | |
Ian Hickson | e1adc52 | 2017-07-19 12:57:22 -0700 | [diff] [blame] | 297 | commands_test: |
| 298 | description: > |
| 299 | Runs tests of flutter run commands. |
| 300 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 301 | required_agent_capabilities: ["mac/android"] |
Ian Hickson | e1adc52 | 2017-07-19 12:57:22 -0700 | [diff] [blame] | 302 | |
Danny Tuppeny | efb88a0 | 2018-02-07 16:58:23 +0000 | [diff] [blame] | 303 | run_machine_concurrent_hot_reload: |
| 304 | description: > |
| 305 | Runs tests of concurrent hot reload commands via flutter run --machine. |
| 306 | stage: devicelab |
| 307 | required_agent_capabilities: ["mac/android"] |
| 308 | |
Devon Carew | 8c36ccf | 2017-08-31 11:38:21 -0700 | [diff] [blame] | 309 | service_extensions_test: |
| 310 | description: > |
| 311 | Validates our service protocol extensions. |
| 312 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 313 | required_agent_capabilities: ["mac/android"] |
Devon Carew | 8c36ccf | 2017-08-31 11:38:21 -0700 | [diff] [blame] | 314 | |
Hans Muller | b4e41ff | 2017-05-25 11:47:36 -0700 | [diff] [blame] | 315 | android_sample_catalog_generator: |
| 316 | description: > |
| 317 | Builds sample catalog markdown pages and Android screenshots |
| 318 | stage: devicelab |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 319 | required_agent_capabilities: ["mac/android"] |
Hans Muller | b4e41ff | 2017-05-25 11:47:36 -0700 | [diff] [blame] | 320 | |
Michael Goderbauer | 8bf1719 | 2017-06-13 12:49:07 -0700 | [diff] [blame] | 321 | complex_layout_semantics_perf: |
| 322 | description: > |
| 323 | Measures duration of building the initial semantics tree. |
| 324 | stage: devicelab |
| 325 | required_agent_capabilities: ["linux/android"] |
Ian Hickson | 9adb4a7 | 2017-06-23 14:58:29 -0700 | [diff] [blame] | 326 | |
Ian Hickson | bbea0c3 | 2017-06-23 18:13:40 -0700 | [diff] [blame] | 327 | routing_test: |
Ian Hickson | 9adb4a7 | 2017-06-23 14:58:29 -0700 | [diff] [blame] | 328 | description: > |
| 329 | Verifies that `flutter drive --route` still works. No performance numbers. |
| 330 | stage: devicelab |
| 331 | required_agent_capabilities: ["linux/android"] |
Michael Goderbauer | 8bf1719 | 2017-06-13 12:49:07 -0700 | [diff] [blame] | 332 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 333 | # flutter_gallery_instrumentation_test: |
| 334 | # description: > |
| 335 | # Same as flutter_gallery__transition_perf but uses Android instrumentation |
| 336 | # framework, and therefore does not require a host computer to run. This |
| 337 | # test can run on off-the-shelf infrastructures, such as Firebase Test Lab. |
| 338 | # stage: devicelab |
| 339 | # required_agent_capabilities: ["linux/android"] |
| 340 | # flaky: true |
Yegor | 18d9b20 | 2017-07-10 17:20:49 -0700 | [diff] [blame] | 341 | |
Florian Loitsch | d248725 | 2018-06-25 15:33:42 +0200 | [diff] [blame] | 342 | flutter_attach_test: |
| 343 | description: > |
| 344 | Tests the `flutter attach` command. |
| 345 | stage: devicelab |
| 346 | required_agent_capabilities: ["linux/android"] |
| 347 | |
Michael Klimushyn | ce43402 | 2018-10-24 11:44:45 -0700 | [diff] [blame] | 348 | named_isolates_test: |
| 349 | description: > |
| 350 | Tests naming and attaching to specific isolates. |
| 351 | stage: devicelab |
| 352 | required_agent_capabilities: ["linux/android"] |
Michael Klimushyn | ce43402 | 2018-10-24 11:44:45 -0700 | [diff] [blame] | 353 | |
Jonah Williams | e778686 | 2019-10-29 13:23:27 -0700 | [diff] [blame] | 354 | linux_chrome_dev_mode: |
| 355 | description: > |
| 356 | Run flutter web on the devicelab and hot restart. |
| 357 | stage: devicelab |
| 358 | required_agent_capabilities: ["linux/android"] |
| 359 | flaky: true |
Jonah Williams | 83986ac | 2019-06-03 23:19:42 -0700 | [diff] [blame] | 360 | |
Jonah Williams | b80e6bb | 2019-10-17 19:21:52 -0700 | [diff] [blame] | 361 | web_size__compile_test: |
| 362 | description: > |
| 363 | Measures the size of a dart2js bundle. |
| 364 | stage: devicelab |
| 365 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | 50ea6f3 | 2019-06-05 12:40:21 -0700 | [diff] [blame] | 366 | |
Alexander Aprelev | 3badcf5 | 2019-06-28 15:14:03 -0700 | [diff] [blame] | 367 | image_list_reported_duration: |
| 368 | description: > |
Alexander Aprelev | 9f285aa | 2019-07-08 08:23:06 -0700 | [diff] [blame] | 369 | Measures image loading performance on release (aot) build. |
| 370 | stage: devicelab |
| 371 | required_agent_capabilities: ["linux/android"] |
Alexander Aprelev | 9f285aa | 2019-07-08 08:23:06 -0700 | [diff] [blame] | 372 | |
| 373 | image_list_jit_reported_duration: |
| 374 | description: > |
| 375 | Measures image loading performance on debug (jit) build. |
Alexander Aprelev | 3badcf5 | 2019-06-28 15:14:03 -0700 | [diff] [blame] | 376 | stage: devicelab |
| 377 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | 50ea6f3 | 2019-06-05 12:40:21 -0700 | [diff] [blame] | 378 | |
Jonah Williams | b80e6bb | 2019-10-17 19:21:52 -0700 | [diff] [blame] | 379 | build_benchmark: |
| 380 | description: > |
| 381 | Measures APK build performance across config changes. |
| 382 | stage: devicelab |
| 383 | required_agent_capabilities: ["linux/android"] |
Jonah Williams | 05b4c67 | 2019-07-03 10:54:04 -0700 | [diff] [blame] | 384 | |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 385 | # iOS on-device tests |
| 386 | |
liyuqian | c1cb680 | 2019-08-28 10:33:43 -0700 | [diff] [blame] | 387 | tiles_scroll_perf_ios__timeline_summary: |
| 388 | description: > |
| 389 | Measures the runtime performance of the tiles tab in the Complex Layout sample app on iPhone 6. |
| 390 | stage: devicelab_ios |
| 391 | required_agent_capabilities: ["mac/ios"] |
| 392 | |
| 393 | tiles_scroll_perf_iphonexs__timeline_summary: |
| 394 | description: > |
| 395 | Measures the runtime performance of the tiles tab in the Complex Layout sample app on iPhone XS. |
| 396 | stage: devicelab_ios |
| 397 | required_agent_capabilities: ["mac/iphonexs"] |
| 398 | |
| 399 | flutter_gallery_ios32__start_up: |
| 400 | description: > |
| 401 | Measures the startup time of the Flutter Gallery app on 32-bit iOS (iPhone 4S). |
| 402 | stage: devicelab_ios |
| 403 | required_agent_capabilities: ["mac/ios32"] |
| 404 | |
| 405 | flutter_gallery_ios32__transition_perf: |
| 406 | description: > |
| 407 | Measures the performance of screen transitions in Flutter Gallery on |
| 408 | 32-bit iOS (iPhone 4S). |
| 409 | stage: devicelab_ios |
| 410 | required_agent_capabilities: ["mac/ios32"] |
| 411 | |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 412 | flavors_test_ios: |
| 413 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 414 | Checks that flavored builds work on iPhone 6. |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 415 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 416 | required_agent_capabilities: ["mac/ios"] |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 417 | |
Mikkel Nygaard Ravn | d06482c | 2017-11-22 14:16:25 +0100 | [diff] [blame] | 418 | external_ui_integration_test_ios: |
| 419 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 420 | Checks that external UIs work on iPhone 6. |
Mikkel Nygaard Ravn | dbfd0be | 2017-11-22 15:14:14 +0100 | [diff] [blame] | 421 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 422 | required_agent_capabilities: ["mac/ios"] |
Mikkel Nygaard Ravn | d06482c | 2017-11-22 14:16:25 +0100 | [diff] [blame] | 423 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 424 | channels_integration_test_ios: |
| 425 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 426 | Checks that platform channels work on iPhone 6. |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 427 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 428 | required_agent_capabilities: ["mac/ios"] |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 429 | |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 430 | platform_interaction_test_ios: |
| 431 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 432 | Checks platform interaction on iPhone 6. |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 433 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 434 | required_agent_capabilities: ["mac/ios"] |
Sarah Zakarias | f1f5d4f | 2017-08-11 10:38:12 +0200 | [diff] [blame] | 435 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 436 | platform_channel_sample_test_ios: |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 437 | description: > |
Jenn Magder | b5c1b61 | 2019-07-10 14:13:01 -0700 | [diff] [blame] | 438 | 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] | 439 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 440 | required_agent_capabilities: ["mac/ios"] |
Sarah Zakarias | d1f73fd | 2017-03-20 22:19:03 +0100 | [diff] [blame] | 441 | |
Jenn Magder | b5c1b61 | 2019-07-10 14:13:01 -0700 | [diff] [blame] | 442 | platform_channel_sample_test_swift: |
| 443 | description: > |
| 444 | Runs a driver test on the Platform Channel sample app on iPhone 6 Swift project. |
| 445 | stage: devicelab_ios |
| 446 | required_agent_capabilities: ["mac/ios"] |
Jenn Magder | b5c1b61 | 2019-07-10 14:13:01 -0700 | [diff] [blame] | 447 | |
Sarah Zakarias | a3e71bf | 2018-05-16 13:24:47 +0200 | [diff] [blame] | 448 | platform_view_ios__start_up: |
| 449 | description: > |
| 450 | Verifies that Platform View can be used from an iOS project. |
| 451 | stage: devicelab_ios |
| 452 | required_agent_capabilities: ["mac/ios"] |
| 453 | |
liyuqian | bbcfdea | 2019-08-20 10:39:29 -0700 | [diff] [blame] | 454 | backdrop_filter_perf_ios__timeline_summary: |
| 455 | description: > |
| 456 | Measures the runtime performance of backdrop filter blurs on iOS. |
| 457 | stage: devicelab_ios |
| 458 | required_agent_capabilities: ["mac/ios"] |
liyuqian | bbcfdea | 2019-08-20 10:39:29 -0700 | [diff] [blame] | 459 | |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 460 | complex_layout_scroll_perf_ios__timeline_summary: |
| 461 | description: > |
| 462 | Measures the runtime performance of the Complex Layout sample app on |
| 463 | iOS. |
| 464 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 465 | required_agent_capabilities: ["mac/ios"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 466 | |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 467 | flutter_gallery_ios__start_up: |
| 468 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 469 | Measures the startup time of the Flutter Gallery app on iPhone 6. |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 470 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 471 | required_agent_capabilities: ["mac/ios"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 472 | |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 473 | complex_layout_ios__start_up: |
| 474 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 475 | Measures the startup time of the Complex Layout sample app on iPhone 6. |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 476 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 477 | required_agent_capabilities: ["mac/ios"] |
Yegor | 1ba1562 | 2016-09-14 13:22:53 -0700 | [diff] [blame] | 478 | |
Chris Bracken | abfee82 | 2017-03-29 19:19:57 -0700 | [diff] [blame] | 479 | flutter_gallery_ios__transition_perf: |
| 480 | description: > |
| 481 | Measures the performance of screen transitions in Flutter Gallery on |
| 482 | iOS. |
| 483 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 484 | required_agent_capabilities: ["mac/ios"] |
Yegor | 568a6e1 | 2016-12-05 12:46:59 -0800 | [diff] [blame] | 485 | |
Michael Goderbauer | ebb174b | 2018-06-16 00:08:33 -0700 | [diff] [blame] | 486 | hello_world_ios__compile: |
| 487 | description: > |
| 488 | Measures the IPA size of Hello World. |
Todd Volkert | 083022b | 2019-08-16 15:34:56 -0700 | [diff] [blame] | 489 | stage: devicelab_ios |
Michael Goderbauer | ebb174b | 2018-06-16 00:08:33 -0700 | [diff] [blame] | 490 | required_agent_capabilities: ["mac/ios"] |
| 491 | |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 492 | microbenchmarks_ios: |
| 493 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 494 | Runs benchmarks from dev/benchmarks/microbenchmarks on iPhone 6. |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 495 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 496 | required_agent_capabilities: ["mac/ios"] |
Yegor | c027aa1 | 2017-11-02 14:20:14 -0700 | [diff] [blame] | 497 | timeout_in_minutes: 30 |
Michael Goderbauer | 79002c7 | 2017-03-16 13:47:14 -0700 | [diff] [blame] | 498 | |
Ian Hickson | d104106 | 2017-11-28 17:21:01 -0800 | [diff] [blame] | 499 | flutter_view_ios__start_up: |
| 500 | description: > |
| 501 | Verifies that Flutter View can be used from an iOS project. |
| 502 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 503 | required_agent_capabilities: ["mac/ios"] |
Sarah Zakarias | 47fc81f | 2017-03-24 11:45:57 +0100 | [diff] [blame] | 504 | |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 505 | integration_ui_ios: |
| 506 | description: > |
liyuqian | 34e18d3 | 2019-07-08 14:13:33 -0700 | [diff] [blame] | 507 | Runs end-to-end Flutter tests on iPhone 6. |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 508 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 509 | required_agent_capabilities: ["mac/ios"] |
Yegor | a90a850 | 2018-04-20 13:57:06 -0700 | [diff] [blame] | 510 | timeout_in_minutes: 20 |
Chris Bracken | 2d437f5 | 2017-05-11 14:29:20 -0700 | [diff] [blame] | 511 | |
Christopher Fujino | 18ff9a2 | 2019-10-18 12:28:46 -0700 | [diff] [blame] | 512 | # TODO(fujino): does not pass on iOS13 https://github.com/flutter/flutter/issues/41133 |
| 513 | # system_debug_ios: |
| 514 | # description: > |
| 515 | # Tests that the Engine correctly initializes the system debugger for debug-mode iOS apps. |
| 516 | # stage: devicelab_ios |
| 517 | # required_agent_capabilities: ["mac/ios"] |
| 518 | # timeout_in_minutes: 10 |
sjindel-google | 0564f0a | 2019-08-06 20:08:09 +0200 | [diff] [blame] | 519 | |
Hans Muller | b4e41ff | 2017-05-25 11:47:36 -0700 | [diff] [blame] | 520 | ios_sample_catalog_generator: |
| 521 | description: > |
| 522 | Builds sample catalog markdown pages and iOS screenshots |
| 523 | stage: devicelab_ios |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 524 | required_agent_capabilities: ["mac/ios"] |
Hans Muller | b4e41ff | 2017-05-25 11:47:36 -0700 | [diff] [blame] | 525 | |
Jonah Williams | e778686 | 2019-10-29 13:23:27 -0700 | [diff] [blame] | 526 | macos_chrome_dev_mode: |
| 527 | description: > |
| 528 | Run flutter web on the devicelab and hot restart. |
| 529 | stage: devicelab_ios |
| 530 | required_agent_capabilities: ["mac/ios"] |
| 531 | flaky: true # marked as flaky while infra is under heavy development |
Jonah Williams | 83986ac | 2019-06-03 23:19:42 -0700 | [diff] [blame] | 532 | |
Jonah Williams | 91e3b2d | 2019-07-08 18:09:00 -0700 | [diff] [blame] | 533 | build_benchmark_ios: |
| 534 | description: > |
| 535 | Measures iOS build performance across config changes. |
| 536 | stage: devicelab_ios |
| 537 | required_agent_capabilities: ["mac/ios"] |
Jonah Williams | 91e3b2d | 2019-07-08 18:09:00 -0700 | [diff] [blame] | 538 | |
liyuqian | 9cc29c6 | 2019-09-29 11:33:43 -0700 | [diff] [blame] | 539 | simple_animation_perf_iphonexs: |
| 540 | description: > |
| 541 | Measure CPU/GPU usage percentages of a simple animation. |
| 542 | stage: devicelab_ios |
| 543 | required_agent_capabilities: ["mac/iphonexs"] |
| 544 | |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 545 | smoke_catalina_start_up_ios: |
Tong Wu | b38302b | 2019-08-27 11:22:54 -0700 | [diff] [blame] | 546 | description: > |
| 547 | 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] | 548 | stage: devicelab_ios |
| 549 | required_agent_capabilities: ["mac-catalina/ios"] |
Tong Wu | b38302b | 2019-08-27 11:22:54 -0700 | [diff] [blame] | 550 | |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 551 | smoke_catalina_hot_mode_dev_cycle_ios__benchmark: |
Tong Wu | b38302b | 2019-08-27 11:22:54 -0700 | [diff] [blame] | 552 | description: > |
| 553 | 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] | 554 | stage: devicelab_ios |
Tong Wu | 2f58d08 | 2019-08-27 12:27:12 -0700 | [diff] [blame] | 555 | required_agent_capabilities: ["mac-catalina/ios"] |
Tong Wu | b38302b | 2019-08-27 11:22:54 -0700 | [diff] [blame] | 556 | |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 557 | smoke_catalina_start_up: |
| 558 | description: > |
| 559 | A smoke test that runs on macOS Catalina, which is a clone of the Gallery startup latency test. |
| 560 | stage: devicelab |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 561 | required_agent_capabilities: ["mac-catalina/android"] |
| 562 | |
| 563 | smoke_catalina_hot_mode_dev_cycle__benchmark: |
| 564 | description: > |
| 565 | A some test that runs on macOS Catalina, which is a clone of the Dart VM hot patching performance benchmarking. |
| 566 | stage: devicelab |
Tong Wu | a690b0b | 2019-08-27 17:47:32 -0700 | [diff] [blame] | 567 | required_agent_capabilities: ["mac-catalina/android"] |
| 568 | |
Jonah Williams | 0e36a91 | 2019-11-20 12:35:53 -0800 | [diff] [blame] | 569 | # macOS target platform tests |
| 570 | hot_mode_dev_cycle_macos_target__benchmark: |
| 571 | description: > |
| 572 | Checks the functionality and performance of hot reload on a macOS target platform |
| 573 | stage: devicelab |
| 574 | required_agent_capabilities: ["mac/ios"] |
| 575 | flaky: true |
| 576 | |
Michael Goderbauer | 79002c7 | 2017-03-16 13:47:14 -0700 | [diff] [blame] | 577 | # Tests running on Windows host |
| 578 | |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 579 | flavors_test_win: |
| 580 | description: > |
| 581 | Checks that flavored builds work on Windows. |
| 582 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 583 | required_agent_capabilities: ["windows/android"] |
Mikkel Nygaard Ravn | 9496e6d | 2017-08-23 10:55:35 +0200 | [diff] [blame] | 584 | |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 585 | channels_integration_test_win: |
| 586 | description: > |
| 587 | Checks that platform channels work when app is launched from Windows. |
| 588 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 589 | required_agent_capabilities: ["windows/android"] |
Mikkel Nygaard Ravn | 70ff50f | 2017-04-27 08:44:28 +0200 | [diff] [blame] | 590 | |
Mikkel Nygaard Ravn | 2000435 | 2018-02-16 10:17:28 +0100 | [diff] [blame] | 591 | plugin_test_win: |
| 592 | description: > |
| 593 | Checks that the project template works and supports plugins on Windows. |
| 594 | stage: devicelab_win |
| 595 | required_agent_capabilities: ["windows/android"] |
Mikkel Nygaard Ravn | 2000435 | 2018-02-16 10:17:28 +0100 | [diff] [blame] | 596 | |
Michael Goderbauer | 506aea0 | 2017-03-28 14:22:03 -0700 | [diff] [blame] | 597 | hot_mode_dev_cycle_win__benchmark: |
| 598 | description: > |
| 599 | Measures the performance of Dart VM hot patching feature on Windows. |
| 600 | stage: devicelab_win |
Yegor | d589df4 | 2018-01-02 19:53:11 -0800 | [diff] [blame] | 601 | required_agent_capabilities: ["windows/android"] |
Yegor | 7397bb9 | 2017-05-31 12:43:18 -0700 | [diff] [blame] | 602 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 603 | # run_without_leak_win: |
| 604 | # description: > |
| 605 | # Checks that `flutter run` does not leak dart.exe on Windows. |
| 606 | # stage: devicelab_win |
| 607 | # required_agent_capabilities: ["windows/android"] |
Dan Field | ecfdd7e | 2019-03-22 14:32:36 -0700 | [diff] [blame] | 608 | |
Yegor | 7397bb9 | 2017-05-31 12:43:18 -0700 | [diff] [blame] | 609 | # Tests running on Linux hosts |
| 610 | |
| 611 | hot_mode_dev_cycle_linux__benchmark: |
| 612 | description: > |
| 613 | Measures the performance of Dart VM hot patching feature on a Linux host. |
| 614 | stage: devicelab |
| 615 | required_agent_capabilities: ["linux/android"] |
Yegor | 7397bb9 | 2017-05-31 12:43:18 -0700 | [diff] [blame] | 616 | |
Ian Hickson | 3ecd430 | 2018-06-26 17:34:25 -0700 | [diff] [blame] | 617 | flutter_test_performance: |
| 618 | description: > |
| 619 | Measures performance of running flutter test. |
| 620 | stage: devicelab |
| 621 | required_agent_capabilities: ["linux/android"] |
Ian Hickson | 3ecd430 | 2018-06-26 17:34:25 -0700 | [diff] [blame] | 622 | |
Ian Hickson | be79379 | 2019-10-17 19:32:31 -0700 | [diff] [blame] | 623 | dartdocs: |
| 624 | description: > |
| 625 | Tracks how many members are still lacking documentation. |
| 626 | stage: devicelab |
godofredoc | 4c4cdbf | 2019-12-02 19:45:04 -0800 | [diff] [blame] | 627 | required_agent_capabilities: ["linux-vm"] |
Ian Hickson | be79379 | 2019-10-17 19:32:31 -0700 | [diff] [blame] | 628 | |
Yegor | 7397bb9 | 2017-05-31 12:43:18 -0700 | [diff] [blame] | 629 | technical_debt__cost: |
| 630 | description: > |
| 631 | Estimates our technical debt (TODOs, analyzer ignores, etc). |
| 632 | stage: devicelab |
godofredoc | 1657075 | 2019-12-04 16:26:41 -0800 | [diff] [blame] | 633 | required_agent_capabilities: ["linux-vm"] |
Yegor | 06deba2 | 2017-05-31 15:13:08 -0700 | [diff] [blame] | 634 | |
Yegor | 06deba2 | 2017-05-31 15:13:08 -0700 | [diff] [blame] | 635 | flutter_gallery__start_up: |
| 636 | description: > |
| 637 | Measures the startup time of the Flutter Gallery app on Android. |
| 638 | stage: devicelab |
| 639 | required_agent_capabilities: ["linux/android"] |
| 640 | |
| 641 | flutter_gallery__transition_perf: |
| 642 | description: > |
| 643 | Measures the performance of screen transitions in Flutter Gallery on |
| 644 | Android. |
| 645 | stage: devicelab |
| 646 | required_agent_capabilities: ["linux/android"] |
| 647 | |
Michael Goderbauer | e2d4f92 | 2017-06-14 08:09:05 -0700 | [diff] [blame] | 648 | flutter_gallery__transition_perf_with_semantics: |
| 649 | description: > |
| 650 | Measures the delta in performance of screen transitions without and |
| 651 | with semantics enabled. |
| 652 | stage: devicelab |
| 653 | required_agent_capabilities: ["linux/android"] |
Michael Goderbauer | e2d4f92 | 2017-06-14 08:09:05 -0700 | [diff] [blame] | 654 | |
Yegor | 06deba2 | 2017-05-31 15:13:08 -0700 | [diff] [blame] | 655 | flutter_gallery__memory_nav: |
| 656 | description: > |
| 657 | Measures memory usage after repeated navigation in Gallery. |
| 658 | stage: devicelab |
| 659 | required_agent_capabilities: ["linux/android"] |
| 660 | |
| 661 | flutter_gallery__back_button_memory: |
| 662 | description: > |
| 663 | Measures memory usage after Android app suspend and resume. |
| 664 | stage: devicelab |
| 665 | required_agent_capabilities: ["linux/android"] |
Yegor | fde985b | 2017-06-13 13:14:16 -0700 | [diff] [blame] | 666 | |
Kaushik Iska | 92bfc99 | 2019-06-04 12:32:52 -0700 | [diff] [blame] | 667 | flutter_gallery__image_cache_memory: |
| 668 | description: > |
| 669 | Measures memory usage for a list of large red squares in smaller containers. |
| 670 | stage: devicelab |
| 671 | required_agent_capabilities: ["linux/android"] |
Kaushik Iska | 92bfc99 | 2019-06-04 12:32:52 -0700 | [diff] [blame] | 672 | |
liyuqian | a2005ea | 2019-12-05 19:28:00 -0800 | [diff] [blame^] | 673 | fast_scroll_large_images__memory: |
| 674 | description: > |
| 675 | Measures memory usage for scrolling through a list of large images. |
| 676 | stage: devicelab |
| 677 | required_agent_capabilities: ["mac/android"] |
| 678 | |
Yegor | fde985b | 2017-06-13 13:14:16 -0700 | [diff] [blame] | 679 | analyzer_benchmark: |
| 680 | description: > |
| 681 | Measures the speed of Dart analyzer. |
| 682 | stage: devicelab |
Jonah Williams | 452f255 | 2018-08-13 13:26:32 -0700 | [diff] [blame] | 683 | required_agent_capabilities: ["linux/android"] |
Chris Bracken | 52246c0 | 2018-05-14 15:05:38 -0700 | [diff] [blame] | 684 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 685 | # run_without_leak_linux: |
| 686 | # description: > |
| 687 | # Checks that `flutter run` does not leak dart on Linux. |
| 688 | # stage: devicelab |
| 689 | # required_agent_capabilities: ["linux/android"] |
| 690 | # flaky: true |
Dan Field | ecfdd7e | 2019-03-22 14:32:36 -0700 | [diff] [blame] | 691 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 692 | # run_without_leak_mac: |
| 693 | # description: > |
| 694 | # Checks that `flutter run` does not leak dart on macOS. |
| 695 | # stage: devicelab |
| 696 | # required_agent_capabilities: ["mac/android"] |
| 697 | # flaky: true |
Matt Carroll | a7387b1 | 2019-07-24 13:44:13 -0700 | [diff] [blame] | 698 | |
Jonah Williams | 440a911 | 2019-09-10 08:35:06 -0700 | [diff] [blame] | 699 | # android_splash_screen_integration_test: |
| 700 | # description: > |
| 701 | # Runs end-to-end test of Flutter's Android splash behavior. |
| 702 | # stage: devicelab |
| 703 | # required_agent_capabilities: ["linux/android"] |
| 704 | # flaky: true |