mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This replaces `ci/test.sh` with `run_tests.sh`. `run_tests.sh` includes `ci/test.sh` and multiple other tests. Partially addresses flutter/flutter#22682. Temporarily skipped tests should be fixed and re-enabled in a follow-up commit.
15 lines
232 B
Bash
Executable File
15 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
PATH="$HOME/depot_tools:$PATH"
|
|
|
|
cd ..
|
|
|
|
# Build the dart UI files
|
|
flutter/tools/gn --unoptimized
|
|
ninja -C out/host_debug_unopt generate_dart_ui
|
|
|
|
# Analyze the dart UI
|
|
flutter/ci/analyze.sh
|
|
flutter/ci/licenses.sh
|