mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Add type annotations in many places. Fix some identifiers to have more lint-satisfying names. Make all operator==s consistent in style. Reorder some functions for consistency. Make ParentData no longer dynamic, and fix all the code around that.
22 lines
438 B
Bash
Executable File
22 lines
438 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
# Smoke test sky_shell.
|
|
./out/sky_shell --help
|
|
|
|
# Run the tests.
|
|
pushd sky/unit
|
|
SKY_SHELL=../../out/sky_shell ../../third_party/dart-sdk/dart-sdk/bin/pub run sky_tools:sky_test -j 1
|
|
popd
|
|
|
|
# Analyze the code.
|
|
pushd sky/packages/workbench
|
|
../../../third_party/dart-sdk/dart-sdk/bin/pub get
|
|
popd
|
|
pushd sky/packages/sky
|
|
../../tools/skyanalyzer --congratulate lib/widgets.dart
|
|
popd
|
|
|
|
# Generate docs.
|
|
./sky/tools/skydoc.py
|