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_master.sh
Brett Morgan b703f1f3f9 Fixup experimental/federated_plugin (#1776)
Replaces https://github.com/flutter/samples/pull/1749

FYI @negotoyolo

## Pre-launch Checklist

- [x] I read the [Flutter Style Guide] _recently_, and have followed its
advice.
- [x] I signed the [CLA].
- [x] I read the [Contributors Guide].
- [x] I updated/added relevant documentation (doc comments with `///`).
- [x] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-devrel
channel on [Discord].

<!-- Links -->
[Flutter Style Guide]:
https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo
[CLA]: https://cla.developers.google.com/
[Discord]: https://github.com/flutter/flutter/wiki/Chat
[Contributors Guide]:
https://github.com/flutter/samples/blob/main/CONTRIBUTING.md
2023-05-06 10:52:10 +10:00

75 lines
2.5 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/android_view/flutter_module_using_plugin"
"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"
"background_isolate_channels"
# TODO(DomesticMouse): Use 'const' with the constructor to improve performance.
# "code_sharing/client"
"code_sharing/server"
"code_sharing/shared"
# TODO(DomesticMouse): version solving failed
# "desktop_photo_search/fluent_ui"
"desktop_photo_search/material"
# TODO(DomesticMouse): The function can't be unconditionally invoked because it can be 'null'.
# "experimental/context_menus"
"experimental/element_embedding_demo"
"experimental/federated_plugin/federated_plugin"
"experimental/federated_plugin/federated_plugin/example"
"experimental/federated_plugin/federated_plugin_macos"
"experimental/federated_plugin/federated_plugin_platform_interface"
"experimental/federated_plugin/federated_plugin_web"
"experimental/federated_plugin/federated_plugin_windows"
"experimental/linting_tool"
# TODO(DomesticMouse): Use 'const' with the constructor to improve performance.
# "experimental/material_3_demo"
"experimental/pedometer"
"experimental/varfont_shader_puzzle"
"experimental/web_dashboard"
"flutter_maps_firestore"
"form_app"
"game_template"
"google_maps"
"infinite_list"
"ios_app_clip"
"isolate_example"
"jsonexample"
# TODO(DomesticMouse): Use 'const' with the constructor to improve performance.
# "material_3_demo"
# TODO(DomesticMouse): The '!' will have no effect because the receiver can't be null.
# "navigation_and_routing"
# TODO(DomesticMouse): Use 'const' with the constructor to improve performance.
# "place_tracker"
# TODO(DomesticMouse): 'setMockMethodCallHandler' is deprecated and shouldn't be used.
# "platform_channels"
"platform_design"
"platform_view_swift"
"provider_counter"
"provider_shopper"
"simple_shader"
# TODO(DomesticMouse): version solving failed
# "simplistic_calculator"
"simplistic_editor"
"testing_app"
"veggieseasons"
"web/_tool"
"web/samples_index"
)
ci_projects "master" "${PROJECT_NAMES[@]}"
echo "-- Success --"