1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00
Files
samples/tool/flutter_ci_script_stable.sh
Qun Cheng 6694b00dae Added M3 demo app (#1189)
* Added M3 demo app

* Changed to use the centralized lint configuration.

* Moved the app at the root level

* Added to CI

* Added app to beta CI and commented app on stable CI file

* Update README.md

* Addressed comments

* fixed comments

* Reverted app name in CI files.

* Added project to the Pub Dependabot config

* Linting pass for current beta channel standards

Co-authored-by: Qun Cheng <quncheng@google.com>
Co-authored-by: Craig Labenz <craig.labenz@gmail.com>
2022-05-06 08:29:31 -07:00

49 lines
1.2 KiB
Bash
Executable File

#!/bin/bash
set -e
DIR="${BASH_SOURCE%/*}"
source "$DIR/flutter_ci_script_shared.sh"
flutter doctor -v
declare -ar PROJECT_NAMES=(
"add_to_app/books/flutter_module_books"
"add_to_app/fullscreen/flutter_module"
"add_to_app/multiple_flutters/multiple_flutters_module"
"add_to_app/plugin/flutter_module_using_plugin"
"add_to_app/prebuilt_module/flutter_module"
"android_splash_screen"
"animations"
"desktop_photo_search/fluent_ui"
"desktop_photo_search/material"
"experimental/federated_plugin/federated_plugin"
"experimental/web_dashboard"
"experimental/linting_tool"
"flutter_maps_firestore"
"form_app"
"infinite_list"
"ios_app_clip"
"isolate_example"
"jsonexample"
# TODO(domesticmouse): Re-enable once Dart 2.17 is stable
# "material_3_demo"
"navigation_and_routing"
"null_safety/null_safe_app"
"null_safety/null_unsafe_app"
"place_tracker"
"platform_channels"
"platform_design"
"platform_view_swift"
"provider_counter"
"provider_shopper"
# TODO: Re-enable once Dart 2.17 is stable
# "simplistic_editor"
"testing_app"
"veggieseasons"
)
ci_projects "stable" "${PROJECT_NAMES[@]}"
echo "-- Success --"