godofredoc 6caad8ead9
Adds all the engine builders to the file used to validate tree status. (#20642)
Builders are read from a json file to get their last builds using
buildbucket and calculate the tree status. Some builders were not being
used for the tree status validation allowing rollers to land changes
even though some builders were failing.

Bug:
  https://github.com/flutter/flutter/issues/64061
2020-08-19 18:39:38 -07:00
..

This directory contains resources that the Flutter team uses during the development of engine.

Luci builder file

try_builders.json and prod_builders.json contains the supported luci try/prod builders for engine. It follows format:

{
    "builders":[
        {
            "name":"yyy",
            "repo":"engine",
            "enabled":true
        }
    ]
}

for try_builders.json, and follows format:

{
    "builders":[
        {
            "name":"yyy",
            "repo":"engine"
        }
    ]
}

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