You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
samples/tool/travis_flutter_script.sh

75 lines
1.8 KiB

#!/bin/bash
set -e
# Backs up one directory at a time, looking for one called "flutter". Once it
# finds that directory, an absolute path to it is returned.
function getFlutterPath() {
local path=""
local counter=0
while [[ "${counter}" -lt 10 ]]; do
[ -d "${path}flutter" ] && echo "$(pwd)/${path}flutter" && return 0
let counter++
path="${path}../"
done
}
readonly LOCAL_SDK_PATH=$(getFlutterPath)
if [ -z "${LOCAL_SDK_PATH}" ]
then
echo "Failed to find the Flutter SDK!"
exit 1
fi
echo "Flutter SDK found at ${LOCAL_SDK_PATH}"
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" \
"veggieseasons" \
)
for PROJECT_NAME in "${PROJECT_NAMES[@]}"
do
echo "== Testing '${PROJECT_NAME}' on Flutter's ${FLUTTER_VERSION} channel =="
pushd "${PROJECT_NAME}"
# Grab packages.
"${LOCAL_SDK_PATH}/bin/flutter" pub get
# Run the analyzer to find any static analysis issues.
"${LOCAL_SDK_PATH}/bin/flutter" analyze
# Reformat the web plugin registrant, if necessary.
if [ -f "lib/generated_plugin_registrant.dart" ]
then
"${LOCAL_SDK_PATH}/bin/flutter" format "lib/generated_plugin_registrant.dart"
fi
# Run the formatter on all the dart files to make sure everything's linted.
"${LOCAL_SDK_PATH}/bin/flutter" format -n --set-exit-if-changed .
# Run the actual tests.
"${LOCAL_SDK_PATH}/bin/flutter" test
popd
done
echo "-- Success --"