| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- # Copyright 2018 Google
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # Within Travis, installs prerequisites for a build.
- # Examines the following configured environment variables that should be
- # specified in an env: block
- # - PROJECT - Firebase or Firestore
- # - METHOD - xcodebuild or cmake; default is xcodebuild
- bundle install
- function install_secrets() {
- # Set up secrets for integration tests and metrics collection. This does not work for pull
- # requests from forks. See
- # https://docs.travis-ci.com/user/pull-requests#pull-requests-and-security-restrictions
- if [[ ! -z $encrypted_d6a88994a5ab_key ]]; then
- openssl aes-256-cbc -K $encrypted_b02643c8c602_key -iv $encrypted_b02643c8c602_iv \
- -in scripts/travis-encrypted/Secrets.tar.enc \
- -out scripts/travis-encrypted/Secrets.tar -d
- tar xvf scripts/travis-encrypted/Secrets.tar
- cp Secrets/Auth/Sample/Application.plist Example/Auth/Sample/Application.plist
- cp Secrets/Auth/Sample/AuthCredentials.h Example/Auth/Sample/AuthCredentials.h
- cp Secrets/Auth/Sample/GoogleService-Info_multi.plist Example/Auth/Sample/GoogleService-Info_multi.plist
- cp Secrets/Auth/Sample/GoogleService-Info.plist Example/Auth/Sample/GoogleService-Info.plist
- cp Secrets/Auth/Sample/Sample.entitlements Example/Auth/Sample/Sample.entitlements
- cp Secrets/Auth/ApiTests/AuthCredentials.h Example/Auth/ApiTests/AuthCredentials.h
- cp Secrets/Storage/App/GoogleService-Info.plist Example/Storage/App/GoogleService-Info.plist
- cp Secrets/Storage/App/GoogleService-Info.plist Example/Database/App/GoogleService-Info.plist
- cp Secrets/Metrics/database.config Metrics/database.config
- fi
- }
- function pod_gen() {
- # Call pod gen with a podspec and additonal optional arguments.
- bundle exec pod gen --local-sources=./ --sources=https://cdn.cocoapods.org/ "$@"
- }
- 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
- bundle exec pod install --project-directory=GoogleUtilities/Example
- install_secrets
- ;;
- Firebase-*-xcodebuild)
- gem install xcpretty
- bundle exec pod install --project-directory=Example --repo-update
- bundle exec pod install --project-directory=GoogleUtilities/Example
- ;;
- Auth-*)
- # Install the workspace for integration testing.
- gem install xcpretty
- bundle exec pod install --project-directory=Example/Auth/AuthSample --repo-update
- install_secrets
- ;;
- Database-*)
- # Install the workspace to have better control over test runs than
- # pod lib lint, since the integration tests can be flaky.
- pod_gen FirebaseDatabase.podspec
- install_secrets
- ;;
- Functions-*)
- # Start server for Functions integration tests.
- ./Functions/Backend/start.sh synchronous
- ;;
- Messaging-*)
- # Install the workspace to have better control over test runs than
- # pod lib lint, since the integration tests can be flaky.
- pod_gen FirebaseMessaging.podspec
- ;;
- Storage-*)
- # Install the workspace to have better control over test runs than
- # pod lib lint, since the integration tests can be flaky.
- pod_gen FirebaseStorage.podspec
- install_secrets
- ;;
- InAppMessaging-iOS-xcodebuild)
- gem install xcpretty
- bundle exec pod install --project-directory=InAppMessagingDisplay/Example --repo-update
- bundle exec pod install --project-directory=InAppMessaging/Example --repo-update
- ;;
- Firestore-*-xcodebuild | Firestore-*-fuzz)
- gem install xcpretty
- bundle exec pod install --project-directory=Firestore/Example --repo-update
- ;;
- *-pod-lib-lint)
- ;;
- Firestore-*-cmake)
- brew outdated cmake || brew upgrade cmake
- brew outdated go || brew upgrade go # Somehow the build for Abseil requires this.
- # Install python packages required to generate proto sources
- pip install six
- ;;
- SymbolCollision-*-xcodebuild)
- gem install xcpretty
- bundle exec pod install --project-directory=SymbolCollisionTest --repo-update
- ;;
- FirebaseCoreDiagnostics-*-xcodebuild)
- gem install xcpretty
- pod_gen FirebaseCoreDiagnostics.podspec
- ;;
- GoogleDataTransport-*-xcodebuild)
- gem install xcpretty
- pod_gen GoogleDataTransport.podspec
- ;;
- GoogleDataTransportIntegrationTest-*-xcodebuild)
- gem install xcpretty
- pod_gen GoogleDataTransport.podspec
- ;;
- GoogleDataTransportCCTSupport-*-xcodebuild)
- gem install xcpretty
- pod_gen GoogleDataTransportCCTSupport.podspec
- ;;
- *)
- 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
- ;;
- esac
|