mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
Add a master CI (#1379)
This commit is contained in:
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
flutter_version: [stable, beta]
|
||||
flutter_version: [stable, beta, master]
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
steps:
|
||||
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
|
||||
|
||||
60
tool/flutter_ci_script_master.sh
Executable file
60
tool/flutter_ci_script_master.sh
Executable file
@@ -0,0 +1,60 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
DIR="${BASH_SOURCE%/*}"
|
||||
source "$DIR/flutter_ci_script_shared.sh"
|
||||
|
||||
flutter doctor -v
|
||||
|
||||
declare -ar PROJECT_NAMES=(
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "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"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "desktop_photo_search/fluent_ui"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "desktop_photo_search/material"
|
||||
"experimental/federated_plugin/federated_plugin"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "experimental/web_dashboard"
|
||||
# Needs a reformat to work on master
|
||||
# "experimental/linting_tool"
|
||||
"flutter_maps_firestore"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "form_app"
|
||||
"game_template"
|
||||
"infinite_list"
|
||||
"ios_app_clip"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "isolate_example"
|
||||
"jsonexample"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "material_3_demo"
|
||||
"navigation_and_routing"
|
||||
"null_safety/null_safe_app"
|
||||
"null_safety/null_unsafe_app"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "place_tracker"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "platform_channels"
|
||||
"platform_design"
|
||||
"platform_view_swift"
|
||||
"provider_counter"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "provider_shopper"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "simplistic_editor"
|
||||
# TODO(domesticmouse): re-enable when stable increments
|
||||
# "testing_app"
|
||||
"veggieseasons"
|
||||
)
|
||||
|
||||
ci_projects "master" "${PROJECT_NAMES[@]}"
|
||||
|
||||
echo "-- Success --"
|
||||
Reference in New Issue
Block a user