flutter/dev
Jonah Williams 69fd5c50a2
[flutter_tools] null assertions off by default for web (#64186)
Like Android/iOS, only enable --null-assertions if asked. Previously this was enabled by default for web, but in general this has proved to be too breaking to enable by default.

#61042
2020-08-19 14:52:47 -07:00
..
automated_tests [flutter_tools] move to fake_async, skip failing tests (#63536) 2020-08-11 19:36:05 -07:00
benchmarks [versions] update gallery, roll versions (#64067) 2020-08-19 08:07:15 -07:00
bots [flutter_tools] null assertions off by default for web (#64186) 2020-08-19 14:52:47 -07:00
ci drop xcpretty for tests (#63804) 2020-08-14 20:09:41 -07:00
customer_testing [versions] update to the latest sdk versions (#62687) 2020-08-03 10:31:06 -07:00
devicelab Rename needsMeasureCpuGpu to measureCpuGpu (#64000) 2020-08-19 13:26:07 -07:00
docs Revert "Add padding around flutter api docs search input (#44980)" (#63113) 2020-08-06 16:15:09 -07:00
integration_tests [versions] update gallery, roll versions (#64067) 2020-08-19 08:07:15 -07:00
manual_tests move compile/target sdk versions to 29 (#62799) (#63008) 2020-08-11 14:51:02 -07:00
missing_dependency_tests [flutter_tools] remove globals from compilers (#59184) 2020-06-18 10:33:17 -07:00
snippets [flutter_tools] move to fake_async, skip failing tests (#63536) 2020-08-11 19:36:05 -07:00
tools [versions] update gallery, roll versions (#64067) 2020-08-19 08:07:15 -07:00
tracing_tests [versions] update to the latest sdk versions (#62687) 2020-08-03 10:31:06 -07:00
prod_builders.json Fix a data issue in prod_builder.json (#64116) 2020-08-18 17:51:29 -07:00
README.md Add enabled flag for try builders (#63783) 2020-08-14 13:22:49 -07:00
try_builders.json [devicelab] Enable a LUCI try builder. (#64004) 2020-08-19 08:36:04 -07:00

This directory contains tools and resources that the Flutter team uses during the development of the framework. The tools in this directory should not be necessary for developing Flutter applications, though of course, they may be interesting if you are curious.

The tests in this directory are run in the framework_tests_misc-* shards.

Luci builder file

try_builders.json and prod_builders.json contain the supported luci try/prod builders for flutter.

try_builders.json

It follows format:

{
    "builders":[
        {
            "name":"yyy",
            "repo":"flutter",
            "taskName":"zzz",
            "enabled":true
        }
    ]
}
  • enabled(optional): true is the default value if unspecified

prod_builders.json

It follows format:

{
    "builders":[
        {
            "name":"yyy",
            "repo":"flutter",
            "taskName":"zzz",
            "flaky":false
        }
    ]
}

try_builders.json will be mainly used in flutter/cocoon to trigger/update pre-submit flutter luci tasks, whereas prod_builders.json will be mainly used in flutter/cocoon to refresh luci task statuses to dashboard.