-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:flutter/packages into sp-allowlist
- Loading branch information
Showing
396 changed files
with
14,215 additions
and
3,709 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
8a5c22e282db5f45ffdef24752520894f18227b9 | ||
fc8856eb80d306ac40563582a1212a07141d9001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
682aa387cfe4fbd71ccd5418b2c2a075729a1c66 | ||
796c8ef79279f9c774545b3771238c3098dbefab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
# Copyright 2013 The Flutter Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
set -e | ||
|
||
cd script/tool | ||
dart analyze --fatal-infos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
# Copyright 2013 The Flutter Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
set -e | ||
|
||
# Pathify the dependencies on changed packages (excluding major version | ||
# changes, which won't affect clients). | ||
./script/tool_runner.sh make-deps-path-based --target-dependencies-with-non-breaking-updates | ||
# This uses --run-on-dirty-packages rather than --packages-for-branch | ||
# since only the packages changed by 'make-deps-path-based' need to be | ||
# re-checked. | ||
dart ./script/tool/bin/flutter_plugin_tools.dart analyze --run-on-dirty-packages \ | ||
--log-timing --custom-analysis=script/configs/custom_analysis.yaml | ||
# Restore the tree to a clean state, to avoid accidental issues if | ||
# other script steps are added to the enclosing task. | ||
git checkout . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
tasks: | ||
- name: prepare tool | ||
script: .ci/scripts/prepare_tool.sh | ||
- name: analyze repo tools | ||
script: .ci/scripts/analyze_repo_tools.sh | ||
- name: analyze | ||
script: script/tool_runner.sh | ||
# DO NOT change the custom-analysis argument here without changing the Dart repo. | ||
# See the comment in script/configs/custom_analysis.yaml for details. | ||
args: ["analyze", "--custom-analysis=script/configs/custom_analysis.yaml"] | ||
# Re-run analysis with path-based dependencies to ensure that publishing | ||
# the changes won't break analysis of other packages in the respository | ||
# that depend on it. | ||
- name: analyze - pathified | ||
script: .ci/scripts/pathified_analyze.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
tasks: | ||
- name: prepare tool | ||
script: .ci/scripts/prepare_tool.sh | ||
# Does a sanity check that packages pass analysis with the lowest possible | ||
# versions of all dependencies. This is to catch cases where we add use of | ||
# new APIs but forget to update minimum versions of dependencies to where | ||
# those APIs are introduced. | ||
- name: analyze - downgraded | ||
script: script/tool_runner.sh | ||
args: ["analyze", "--downgrade", "--custom-analysis=script/configs/custom_analysis.yaml"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
tasks: | ||
- name: prepare tool | ||
script: .ci/scripts/prepare_tool.sh | ||
- name: create all_packages app | ||
script: .ci/scripts/create_all_packages_app.sh | ||
- name: build all_packages for Linux debug | ||
script: .ci/scripts/build_all_packages_app.sh | ||
args: ["linux", "debug"] | ||
- name: build all_packages for Linux release | ||
script: .ci/scripts/build_all_packages_app.sh | ||
args: ["linux", "release"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
tasks: | ||
- name: prepare tool | ||
script: .ci/scripts/prepare_tool.sh | ||
- name: create all_packages app | ||
script: .ci/scripts/create_all_packages_app.sh | ||
# No debug version, unlike the other platforms, since web does not support | ||
# debug builds. | ||
- name: build all_packages app for Web release | ||
script: .ci/scripts/build_all_packages_app.sh | ||
args: ["web", "release"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.