docs/infra/Adding-a-new-Test-Shard.md
Further documentation on Flutter's build infrastructure can be found in https://github.com/flutter/flutter/blob/main/dev/bots/README.md.
A general outline of the requirements that a Flutter CI test shard has:
It is important to land these changes in order to prevent any failing builds during the migration period:
bringup: true. New shards should always be marked in bringup to verify they are passing on master before being able to block the tree. Merge this change. Note that the new shard will not run in presubmit at this point as the target is with bringup: true.bringup: true parameter from .ci.yaml in the Framework tree. This will allow the test to block the tree, preventing breakages. With this change, the new shard will start running in presubmit automatically, unless specify presubmit: false. Note the flake bot runs once a week on Weds.Note: if a new post-submit target is renamed from an existing target, there is no need to follow the bringup process.