diff --git a/.ci/scripts/build_all_packages_app.sh b/.ci/scripts/build_all_packages_app.sh index 008dea7c5e..7341946156 100644 --- a/.ci/scripts/build_all_packages_app.sh +++ b/.ci/scripts/build_all_packages_app.sh @@ -3,6 +3,6 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -cd all_plugins +cd all_packages flutter build windows --debug flutter build windows --release diff --git a/.ci/scripts/create_all_packages_app.sh b/.ci/scripts/create_all_packages_app.sh index 90b6380ed9..8c45a351be 100644 --- a/.ci/scripts/create_all_packages_app.sh +++ b/.ci/scripts/create_all_packages_app.sh @@ -3,5 +3,5 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -dart pub global run flutter_plugin_tools all-plugins-app \ +dart pub global run flutter_plugin_tools create-all-packages-app \ --output-dir=. --exclude script/configs/exclude_all_packages_app.yaml diff --git a/.ci/scripts/prepare_tool.sh b/.ci/scripts/prepare_tool.sh index a4a364d385..6ab8dbcd7d 100755 --- a/.ci/scripts/prepare_tool.sh +++ b/.ci/scripts/prepare_tool.sh @@ -8,4 +8,4 @@ git fetch origin main # Pinned version of the plugin tools, to avoid breakage in this repository # when pushing updates from flutter/plugins. -dart pub global activate flutter_plugin_tools 0.12.1 +dart pub global activate flutter_plugin_tools 0.13.0 diff --git a/.cirrus.yml b/.cirrus.yml index 8443fdb23f..0a2bb3c5df 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -66,16 +66,16 @@ flutter_upgrade_template: &FLUTTER_UPGRADE_TEMPLATE # together. See script/configs/exclude_all_packages_app.yaml for exceptions. build_all_packages_app_template: &BUILD_ALL_PACKAGES_APP_TEMPLATE create_all_packages_app_script: - - $PLUGIN_TOOL_COMMAND all-plugins-app --output-dir=. --exclude script/configs/exclude_all_packages_app.yaml + - $PLUGIN_TOOL_COMMAND create-all-packages-app --output-dir=. --exclude script/configs/exclude_all_packages_app.yaml build_all_packages_debug_script: - - cd all_plugins + - cd all_packages - if [[ "$BUILD_ALL_ARGS" == "web" ]]; then - echo "Skipping; web does not support debug builds" - else - flutter build $BUILD_ALL_ARGS --debug - fi build_all_packages_release_script: - - cd all_plugins + - cd all_packages - flutter build $BUILD_ALL_ARGS --release # Light-workload Linux tasks. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 985aa461cd..94baf4a67f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: with: fetch-depth: 0 # Fetch all history so the tool can get all the tags to determine version. - name: Set up tools - run: dart pub global activate flutter_plugin_tools 0.12.1 + run: dart pub global activate flutter_plugin_tools 0.13.0 # # This workflow should be the last to run. So wait for all the other tests to succeed. - name: Wait on all tests