1
0
mirror of https://github.com/flutter/samples.git synced 2026-03-25 22:01:51 +00:00

Replaces Travis CI with GitHub Actions (#625)

This commit is contained in:
Andrew Brogdon
2020-12-16 17:24:05 -08:00
committed by GitHub
parent 4a30a67a63
commit 83adbb883d
7 changed files with 76 additions and 195 deletions

52
tool/flutter_ci_script.sh Executable file
View File

@@ -0,0 +1,52 @@
#!/bin/bash
set -e
declare -ar PROJECT_NAMES=(
"add_to_app/flutter_module" \
"add_to_app/flutter_module_using_plugin" \
"add_to_app/flutter_module_books" \
"animations" \
"flutter_maps_firestore" \
"infinite_list" \
"ios_app_clip" \
"isolate_example" \
"jsonexample" \
"place_tracker" \
"platform_channels" \
"platform_design"
"platform_view_swift" \
"provider_counter" \
"provider_shopper" \
"testing_app" \
# TODO(goderbauer): Add veggieseasons back when moved out of experimental again.
# "veggieseasons" \
)
for PROJECT_NAME in "${PROJECT_NAMES[@]}"
do
echo "== Testing '${PROJECT_NAME}' on Flutter's ${FLUTTER_VERSION} channel =="
pushd "${PROJECT_NAME}"
# Grab packages.
flutter pub get
# Run the analyzer to find any static analysis issues.
flutter analyze
# Reformat the web plugin registrant, if necessary.
if [ -f "lib/generated_plugin_registrant.dart" ]
then
flutter format "lib/generated_plugin_registrant.dart"
fi
# Run the formatter on all the dart files to make sure everything's linted.
flutter format -n --set-exit-if-changed .
# Run the actual tests.
flutter test
popd
done
echo "-- Success --"