Skip to content

Commit ee4b263

Browse files
authored
Add LUCI try builders json config file (flutter#2993)
* add json config * mv to .ci
1 parent 7027e9d commit ee4b263

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.ci/dev/README.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
This directory contains resources that the Flutter team uses during
2+
the development of plugins.
3+
4+
## Luci builder file
5+
`try_builders.json` contains the supported luci try builders
6+
for plugins. It follows format:
7+
```json
8+
{
9+
"builders":[
10+
{
11+
"name":"yyy",
12+
"repo":"plugins",
13+
"enabled":true
14+
}
15+
]
16+
}
17+
```
18+
This file will be mainly used in [`flutter/cocoon`](https://github.com/flutter/cocoon)
19+
to trigger/update pre-submit luci tasks.

.ci/dev/try_builders.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"builders":[
3+
{
4+
"name":"Windows Plugins",
5+
"repo":"plugins",
6+
"enabled":true
7+
}
8+
]
9+
}

0 commit comments

Comments
 (0)