Skip to content

Commit

Permalink
Use xcframeworks
Browse files Browse the repository at this point in the history
  • Loading branch information
manicmaniac committed Aug 24, 2023
1 parent c08c3dc commit f28843c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GitHubActions/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f28843c

Please sign in to comment.