Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit f8ebf95

Browse files
author
Michael Klimushyn
authored
[location_background] Ignore for CI (#1890)
This pacakge should be removed entirely soon, so remove it from CI so we don't spend further time on analyzer failures.
1 parent 4528a65 commit f8ebf95

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

script/common.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ function check_changed_packages() {
2424
fi
2525

2626
# Filter out any packages that don't have a pubspec.yaml: they have probably
27-
# been deleted in this PR.
27+
# been deleted in this PR. Also filter out `location_background` since it
28+
# should be removed soon.
2829
CHANGED_PACKAGES=""
2930
CHANGED_PACKAGE_LIST=()
3031
for package in "${packages[@]}"; do
31-
if [[ -f "$REPO_DIR/packages/$package/pubspec.yaml" ]]; then
32+
if [ -f "$REPO_DIR/packages/$package/pubspec.yaml" ] && [ $package != "location_background" ]; then
3233
CHANGED_PACKAGES="${CHANGED_PACKAGES},$package"
3334
CHANGED_PACKAGE_LIST=("${CHANGED_PACKAGE_LIST[@]}" "$package")
3435
fi

0 commit comments

Comments
 (0)