From f28843c2d532379dffd73d7328d15a3d280e1630 Mon Sep 17 00:00:00 2001 From: Ryosuke Ito Date: Thu, 24 Aug 2023 14:54:32 +0900 Subject: [PATCH] Use xcframeworks --- GitHubActions/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GitHubActions/build.sh b/GitHubActions/build.sh index 7bcd40ea2..9ffe8ec13 100755 --- a/GitHubActions/build.sh +++ b/GitHubActions/build.sh @@ -35,14 +35,14 @@ MODE="$1" if [ "$MODE" = "tests" -o "$MODE" = "all" ]; then echo "Running MessageKit tests." - carthage bootstrap --platform ios + carthage bootstrap --platform ios --use-xcframeworks --no-use-binaries set -o pipefail && xcodebuild test -project MessageKit.xcodeproj -scheme MessageKitTests -destination "platform=iOS Simulator,name=iPhone 11 Pro" CODE_SIGNING_REQUIRED=NO | xcpretty -c success="1" fi if [ "$MODE" = "framework" -o "$MODE" = "all" ]; then echo "Building MessageKit Framework." - carthage bootstrap --platform ios + carthage bootstrap --platform ios --use-xcframeworks --no-use-binaries set -o pipefail && xcodebuild build -project MessageKit.xcodeproj -scheme MessageKit -destination "platform=iOS Simulator,name=iPhone 11 Pro" CODE_SIGNING_REQUIRED=NO | xcpretty -c success="1" fi