Skip to content

Commit

Permalink
[location_background] Ignore for CI (firebase#1890)
Browse files Browse the repository at this point in the history
This pacakge should be removed entirely soon, so remove it from CI so we
don't spend further time on analyzer failures.
  • Loading branch information
Michael Klimushyn authored Jul 23, 2019
1 parent a8a2d6f commit ebbc5bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions script/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@ function check_changed_packages() {
fi

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

0 comments on commit ebbc5bc

Please sign in to comment.