12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #!/bin/bash
-
- set -e -u -x
-
- THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
- PROJECT_REPO=$(realpath ${THIS_DIR}/../..)
- RELEASE_REPO=$(realpath ${THIS_DIR}/../../../jitsi-meet-ios-sdk-releases)
- DEFAULT_SDK_VERSION=$(/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" ${THIS_DIR}/../sdk/src/Lite-Info.plist)
- SDK_VERSION=${OVERRIDE_SDK_VERSION:-${DEFAULT_SDK_VERSION}}
-
- echo "Releasing Jitsi Meet SDK Lite ${SDK_VERSION}"
-
- pushd ${RELEASE_REPO}
-
- # Generate podspec file
- cat JitsiMeetSDKLite.podspec.tpl | sed -e s/VERSION/${SDK_VERSION}-lite/g > JitsiMeetSDKLite.podspec
-
- # Cleanup
- rm -rf lite/Frameworks/*
-
- popd
-
- # Build the SDK
- pushd ${PROJECT_REPO}
- rm -rf ios/sdk/out
- xcodebuild clean \
- -workspace ios/jitsi-meet.xcworkspace \
- -scheme JitsiMeetSDKLite
- xcodebuild archive \
- -workspace ios/jitsi-meet.xcworkspace \
- -scheme JitsiMeetSDKLite \
- -configuration Release \
- -sdk iphonesimulator \
- -destination='generic/platform=iOS Simulator' \
- -archivePath ios/sdk/out/ios-simulator \
- SKIP_INSTALL=NO \
- BUILD_LIBRARY_FOR_DISTRIBUTION=YES
- xcodebuild archive \
- -workspace ios/jitsi-meet.xcworkspace \
- -scheme JitsiMeetSDKLite \
- -configuration Release \
- -sdk iphoneos \
- -destination='generic/platform=iOS' \
- -archivePath ios/sdk/out/ios-device \
- SKIP_INSTALL=NO \
- BUILD_LIBRARY_FOR_DISTRIBUTION=YES
- xcodebuild -create-xcframework \
- -framework ios/sdk/out/ios-device.xcarchive/Products/Library/Frameworks/JitsiMeetSDK.framework \
- -framework ios/sdk/out/ios-simulator.xcarchive/Products/Library/Frameworks/JitsiMeetSDK.framework \
- -output ios/sdk/out/JitsiMeetSDK.xcframework
- popd
-
- pushd ${RELEASE_REPO}
-
- # Put the new files in the repo
- cp -a ${PROJECT_REPO}/ios/sdk/out/JitsiMeetSDK.xcframework lite/Frameworks/
- cp -a ${PROJECT_REPO}/ios/sdk/out/hermes.xcframework lite/Frameworks/
-
- # Add all files to git
- git add -A .
- git commit --allow-empty -m "${SDK_VERSION} lite"
- git tag "${SDK_VERSION}-lite"
-
- popd
-
- echo "Finished! Don't forget to push the tags and releases repo artifacts."
- echo "The new pod can be pushed to CocoaPods by doing: pod trunk push JitsiMeetSDKLite.podspec"
|