| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- # Copyright 2019 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.
- # Script to run in a CI `before_install` phase to setup the quickstart repo
- # so that it can be used for integration testing.
- set -xeuo pipefail
- scripts_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
- root_dir="$(dirname "$scripts_dir")"
- $scripts_dir/setup_bundler.sh
- # Source function to check if CI secrets are available.
- source $scripts_dir/check_secrets.sh
- if check_secrets; then
- SAMPLE=$1
- # Specify repo so the Firebase module and header can be found in a
- # development pod install. This is needed for the `pod install` command.
- export FIREBASE_POD_REPO_FOR_DEV_POD=`pwd`
- git clone https://github.com/firebase/quickstart-ios.git
- $scripts_dir/localize_podfile.swift quickstart-ios/"$SAMPLE"/Podfile
- cd quickstart-ios/"$SAMPLE"
- # To test a branch, uncomment the following line
- # git checkout {BRANCH_NAME}
- bundle update --bundler
- bundle install
- bundle exec pod install
- # Add GoogleService-Info.plist to Xcode project
- ruby ../scripts/info_script.rb "${SAMPLE}"
- # Secrets are repo specific, so we need to override with the firebase-ios-sdk
- # version. GHA manages the secrets in its action script.
- PLIST_FILE=$root_dir/Secrets/quickstart-ios/"$SAMPLE"/GoogleService-Info.plist
- if [[ -n "${TRAVIS_PULL_REQUEST:-}" ]]; then
- if [[ -f "$PLIST_FILE" ]]; then
- cp $root_dir/Secrets/quickstart-ios/"$SAMPLE"/GoogleService-Info.plist ./
- cp $root_dir/Secrets/quickstart-ios/TestUtils/FIREGSignInInfo.h ../TestUtils/
- if [[ ${SAMPLE} == "DynamicLinks" ]]; then
- sed -i '' 's#DYNAMIC_LINK_DOMAIN#https://qpf6m.app.goo.gl#' DynamicLinksExample/DynamicLinksExample.entitlements
- sed -i '' 's#YOUR_DOMAIN_URI_PREFIX";#https://qpf6m.app.goo.gl";#' DynamicLinksExample/ViewController.m
- elif [[ ${SAMPLE} == "Functions" ]]; then
- sed -i '' 's/REVERSED_CLIENT_ID/com.googleusercontent.apps.1025801074639-6p6ebi8amuklcjrto20gvpe295smm8u6/' FunctionsExample/Info.plist
- fi
- else
- cp ../mock-GoogleService-Info.plist ./GoogleService-Info.plist
- fi
- fi
- cd -
- fi
|