Skip to content

Commit

Permalink
Adds all the engine builders to the file used to validate tree status. (
Browse files Browse the repository at this point in the history
flutter#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:
  flutter/flutter#64061
  • Loading branch information
godofredoc authored Aug 20, 2020
1 parent 81027ab commit 6caad8e
Showing 1 changed file with 22 additions and 6 deletions.
28 changes: 22 additions & 6 deletions ci/dev/prod_builders.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
{
"builders":[
{
"name":"Linux Host Engine",
"name":"Linux Android AOT Engine",
"repo":"engine"
},
{
"name":"Linux Fuchsia",
"name":"Linux Android Debug Engine",
"repo":"engine"
},
{
"name":"Linux Android AOT Engine",
"name":"Linux Host Engine",
"repo":"engine"
},
{
"name":"Linux Android Debug Engine",
"name":"Linux Fuchsia",
"repo":"engine"
},
{
"name":"Mac Host Engine",
"name":"Linux Fuchsia FEMU",
"repo":"engine"
},
{
"name":"Linux Web Engine",
"repo":"engine"
},
{
Expand All @@ -28,6 +32,10 @@
"name":"Mac Android Debug Engine",
"repo":"engine"
},
{
"name":"Mac Host Engine",
"repo":"engine"
},
{
"name":"Mac iOS Engine",
"repo":"engine"
Expand All @@ -41,12 +49,20 @@
"repo":"engine"
},
{
"name":"Windows Host Engine",
"name":"Mac Web Engine",
"repo":"engine"
},
{
"name":"Windows Android AOT Engine",
"repo":"engine"
},
{
"name":"Windows Host Engine",
"repo":"engine"
},
{
"name":"Windows Web Engine",
"repo":"engine"
}
]
}

0 comments on commit 6caad8e

Please sign in to comment.