aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/install_prereqs.sh
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-05-09 19:23:38 -0700
committerGravatar GitHub <noreply@github.com>2018-05-09 19:23:38 -0700
commit53b866443995ed8e796246d1f22a6fe47f76be6b (patch)
tree897042336f2e4df0ec77cf95711946c95c301990 /scripts/install_prereqs.sh
parentfb6f930f7beea29129cea89896d8ab874316ecbe (diff)
Add back pod spec lint checking (#1252)
* Add back pod spec lint checking * Separate pod lib lint to stages * order unit tests before lints * add lint to install_prereqs and remove default * consolidate pod_install and install_prereqs scripts * workaround travis 10 minute timeout for Firestore lint
Diffstat (limited to 'scripts/install_prereqs.sh')
-rwxr-xr-xscripts/install_prereqs.sh34
1 files changed, 25 insertions, 9 deletions
diff --git a/scripts/install_prereqs.sh b/scripts/install_prereqs.sh
index c86663f..c943369 100755
--- a/scripts/install_prereqs.sh
+++ b/scripts/install_prereqs.sh
@@ -19,28 +19,44 @@
# - PROJECT - Firebase or Firestore
# - METHOD - xcodebuild or cmake; default is xcodebuild
-if [[ -z "$METHOD" ]]; then
- METHOD="xcodebuild"
-fi
+bundle install
-case "$PROJECT-$METHOD" in
- *-xcodebuild)
- bundle install
+case "$PROJECT-$PLATFORM-$METHOD" in
+ Firebase-iOS-xcodebuild)
gem install xcpretty
+ bundle exec pod install --project-directory=Example --repo-update
+ bundle exec pod install --project-directory=Functions/Example
;;
- Firestore-cmake)
- bundle install
+ Firebase-*-xcodebuild)
+ gem install xcpretty
+ bundle exec pod install --project-directory=Example --repo-update
+ ;;
+
+ Firestore-*-xcodebuild)
+ gem install xcpretty
+ bundle exec pod install --project-directory=Firestore/Example --repo-update
+ ;;
+
+ *-pod-lib-lint)
+ bundle exec pod repo update
+ ;;
+
+ Firestore-*-cmake)
# xcpretty is helpful for the intermediate step which builds FirebaseCore
# using xcodebuild.
gem install xcpretty
brew outdated cmake || brew upgrade cmake
brew outdated go || brew upgrade go # Somehow the build for Abseil requires this.
+ bundle exec pod install --project-directory=Example --repo-update
+ bundle exec pod install --project-directory=Firestore/Example \
+ --no-repo-update
;;
*)
- echo "Unknown project-method combo" 1>&2
+ echo "Unknown project-platform-method combo" 1>&2
echo " PROJECT=$PROJECT" 1>&2
+ echo " PLATFORM=$PLATFORM" 1>&2
echo " METHOD=$METHOD" 1>&2
exit 1
;;