mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Rather than using the Flutter unit tests to test FLX, we can just test FLX directly. Also, clean up the dependencies in the pubspec to match the code.
13 lines
303 B
Bash
Executable File
13 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
pub global activate tuneup
|
|
|
|
(cd packages/cassowary; pub get)
|
|
(cd packages/flutter_tools; pub get)
|
|
(cd packages/flx; pub get)
|
|
(cd packages/newton; pub get)
|
|
(cd packages/unit; pub get)
|
|
|
|
./travis/download_tester.py packages/unit/packages/sky_engine/REVISION bin/cache/travis/out/Debug
|