diff --git a/dev/README.md b/dev/README.md new file mode 100644 index 0000000000..4b55a1193c --- /dev/null +++ b/dev/README.md @@ -0,0 +1,19 @@ +This directory contains resources that the Flutter team uses during +the development of packages. + +## Luci builder file +`try_builders.json` contains the supported luci try builders +for packages. It follows format: +```json +{ + "builders":[ + { + "name":"xxx", + "repo":"packages" + } + ] +} +``` +This file will be mainly used in [`flutter/cocoon`](https://github.com/flutter/cocoon) +to update luci task statuses of packages pre-submit tests. + diff --git a/dev/try_builders.json b/dev/try_builders.json new file mode 100644 index 0000000000..34ee857132 --- /dev/null +++ b/dev/try_builders.json @@ -0,0 +1,8 @@ +{ + "builders":[ + { + "name":"fuchsia_ctl", + "repo":"packages" + } + ] +}