Add supported Luci builders for packages repo (#184)

* add luci try builders

* add readme

* add code to validate json contents

* remove json check dart

* use generic name
This commit is contained in:
keyonghan
2020-08-05 17:09:10 -07:00
committed by GitHub
parent b17bacc4f6
commit 7d26c62185
2 changed files with 27 additions and 0 deletions

19
dev/README.md Normal file
View File

@ -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.

8
dev/try_builders.json Normal file
View File

@ -0,0 +1,8 @@
{
"builders":[
{
"name":"fuchsia_ctl",
"repo":"packages"
}
]
}