
Closes https://github.com/flutter/flutter/issues/162041. I also converted the `.sh` and `.bat` files (largely) to Dart, mostly because I don't know enough Windows XP command prompt in order to make the change safely. They should still run the same from the CI bootstrapping, but most of the logic is now Dart code. Will send a separate PR to update the `flutter/tests` PR template. /cc @johnmccutchan @Piinks
17 lines
461 B
Markdown
17 lines
461 B
Markdown
# customer_testing
|
|
|
|
This tool checks out <https://github.com/flutter/tests> at the commit SHA
|
|
specified in [`tests.version`](tests.version), and runs the tests registered to
|
|
verify that end-user apps and libraries are working at the current tip-of-tree
|
|
of Flutter.
|
|
|
|
To (locally) test a specific SHA, use `ci.dart`:
|
|
|
|
```sh
|
|
cd dev/customer_testing
|
|
dart ci.dart [sha]
|
|
```
|
|
|
|
Or, to update the SHA for our CI, edit and send a PR for
|
|
[`tests.version`](tests.version).
|