mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Split CI testing based on flutter channels (#651)
This commit is contained in:
@@ -21,7 +21,7 @@ declare -ar ANDROID_PROJECT_NAMES=(
|
||||
|
||||
for PROJECT_NAME in "${ANDROID_PROJECT_NAMES[@]}"
|
||||
do
|
||||
echo "== Testing '${PROJECT_NAME}' on Flutter's ${FLUTTER_VERSION} channel =="
|
||||
echo "== Testing '${PROJECT_NAME}' on Flutter's stable channel =="
|
||||
pushd "${PROJECT_NAME}"
|
||||
|
||||
./gradlew --stacktrace assembleDebug
|
||||
|
||||
63
tool/flutter_ci_script_beta.sh
Executable file
63
tool/flutter_ci_script_beta.sh
Executable file
@@ -0,0 +1,63 @@
|
||||
#!/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" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/652
|
||||
# "flutter_maps_firestore" \
|
||||
"infinite_list" \
|
||||
"ios_app_clip" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/653
|
||||
# "isolate_example" \
|
||||
"jsonexample" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/655
|
||||
# "place_tracker" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/656
|
||||
# "platform_channels" \
|
||||
"platform_design"
|
||||
"platform_view_swift" \
|
||||
"provider_counter" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/657
|
||||
# "provider_shopper" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/658
|
||||
# "testing_app" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/659
|
||||
# "experimental/federated_plugin/federated_plugin" \
|
||||
"experimental/null_safety/null_safe_app" \
|
||||
"experimental/null_safety/null_unsafe_app" \
|
||||
"experimental/veggieseasons" \
|
||||
"experimental/web_dashboard" \
|
||||
)
|
||||
|
||||
for PROJECT_NAME in "${PROJECT_NAMES[@]}"
|
||||
do
|
||||
echo "== Testing '${PROJECT_NAME}' on Flutter's beta 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
|
||||
echo "Renaming $(pwd)/lib/generated_plugin_registrant.dart"
|
||||
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 --"
|
||||
64
tool/flutter_ci_script_dev.sh
Executable file
64
tool/flutter_ci_script_dev.sh
Executable file
@@ -0,0 +1,64 @@
|
||||
#!/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" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/652
|
||||
# "flutter_maps_firestore" \
|
||||
"infinite_list" \
|
||||
"ios_app_clip" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/653
|
||||
# "isolate_example" \
|
||||
"jsonexample" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/655
|
||||
# "place_tracker" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/656
|
||||
# "platform_channels" \
|
||||
"platform_design"
|
||||
"platform_view_swift" \
|
||||
"provider_counter" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/657
|
||||
# "provider_shopper" \
|
||||
# Tracking issue: https://github.com/flutter/samples/issues/658
|
||||
# "testing_app" \
|
||||
"experimental/desktop_photo_search" \
|
||||
# https://github.com/flutter/samples/issues/659
|
||||
# "experimental/federated_plugin/federated_plugin" \
|
||||
"experimental/null_safety/null_safe_app" \
|
||||
"experimental/null_safety/null_unsafe_app" \
|
||||
"experimental/veggieseasons" \
|
||||
"experimental/web_dashboard" \
|
||||
)
|
||||
|
||||
for PROJECT_NAME in "${PROJECT_NAMES[@]}"
|
||||
do
|
||||
echo "== Testing '${PROJECT_NAME}' on Flutter's dev 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
|
||||
echo "Renaming $(pwd)/lib/generated_plugin_registrant.dart"
|
||||
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 --"
|
||||
@@ -25,7 +25,7 @@ declare -ar PROJECT_NAMES=(
|
||||
|
||||
for PROJECT_NAME in "${PROJECT_NAMES[@]}"
|
||||
do
|
||||
echo "== Testing '${PROJECT_NAME}' on Flutter's ${FLUTTER_VERSION} channel =="
|
||||
echo "== Testing '${PROJECT_NAME}' on Flutter's stable channel =="
|
||||
pushd "${PROJECT_NAME}"
|
||||
|
||||
# Grab packages.
|
||||
Reference in New Issue
Block a user