-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathbuild_non_firebase_sdks.sh
executable file
·44 lines (37 loc) · 1.53 KB
/
build_non_firebase_sdks.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
# Copyright 2020 Google LLC
#
# 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.
set -ex
cd "${REPO}"/ReleaseTooling
# This file will have non Firebase SDKs that will be built by ZipBuilder.
ZIP_POD_JSON="non_firebase_sdk.json"
rm -f "${ZIP_POD_JSON}"
IFS=' ,' read -a NON_FIREBASE_SDKS <<< "${NON_FIREBASE_SDKS}"
num_sdk="${#NON_FIREBASE_SDKS[@]}"
echo "[" >> "${ZIP_POD_JSON}"
for sdk in "${NON_FIREBASE_SDKS[@]}"
do
echo "{\"name\":\"${sdk}\"}" >> "${ZIP_POD_JSON}"
if [ "$num_sdk" -ne 1 ]; then
echo ",">> "${ZIP_POD_JSON}"
fi
num_sdk=$((num_sdk-1))
done
echo "]" >> "${ZIP_POD_JSON}"
mkdir -p "${REPO}"/sdk_zip
swift run zip-builder --keep-build-artifacts --update-pod-repo --platforms ios \
--zip-pods "${ZIP_POD_JSON}" --output-dir "${REPO}"/sdk_zip --disable-build-dependencies
unzip -o "${REPO}"/sdk_zip/Frameworks.zip -d "${HOME}"/ios_frameworks/Firebase/
# Move Frameworks to Firebase dir, so be align with Firebase SDKs.
mv -n "${HOME}"/ios_frameworks/Firebase/Binaries "${HOME}"/ios_frameworks/Firebase/NonFirebaseSDKs/