-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
120 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,25 @@ on: | |
branches: [main] | ||
|
||
jobs: | ||
build: | ||
name: Build XCFramework | ||
runs-on: macos-15 | ||
env: | ||
PRODUCT_NAME: ProtobufKit | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Xcode | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: 16.0 | ||
- name: Build XCFramework | ||
run: ./Scripts/build_xcframework.sh | ||
- name: Upload artifact to Emerge | ||
uses: EmergeTools/[email protected] | ||
with: | ||
build_type: release | ||
artifact_path: ./build/Protobuf.xcframework.zip | ||
emerge_api_key: ${{ secrets.EMERGE_API_KEY }} | ||
macos_test: | ||
name: Execute tests on macOS | ||
strategy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ DerivedData/ | |
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata | ||
.netrc | ||
.repos | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/bash | ||
|
||
# Script modified from https://docs.emergetools.com/docs/analyzing-a-spm-framework-ios | ||
|
||
set -e | ||
|
||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd -P)" | ||
PROJECT_ROOT="$(dirname "$SCRIPT_DIR")" | ||
|
||
PROJECT_BUILD_DIR="${PROJECT_BUILD_DIR:-"${PROJECT_ROOT}/build"}" | ||
XCODEBUILD_BUILD_DIR="$PROJECT_BUILD_DIR/xcodebuild" | ||
XCODEBUILD_DERIVED_DATA_PATH="$XCODEBUILD_BUILD_DIR/DerivedData" | ||
|
||
PACKAGE_NAME=$1 | ||
if [ -z "$PACKAGE_NAME" ]; then | ||
echo "No package name provided. Using the first scheme found in the Package.swift." | ||
PACKAGE_NAME=$(xcodebuild -list | awk 'schemes && NF>0 { print $1; exit } /Schemes:$/ { schemes = 1 }') | ||
echo "Using: $PACKAGE_NAME" | ||
fi | ||
|
||
build_framework() { | ||
local sdk="$1" | ||
local destination="$2" | ||
local scheme="$3" | ||
|
||
local XCODEBUILD_ARCHIVE_PATH="./build/$scheme-$sdk.xcarchive" | ||
|
||
rm -rf "$XCODEBUILD_ARCHIVE_PATH" | ||
|
||
PROTOBUFKIT_LIBRARY_TYPE=dynamic xcodebuild archive \ | ||
-scheme $scheme \ | ||
-archivePath $XCODEBUILD_ARCHIVE_PATH \ | ||
-derivedDataPath "$XCODEBUILD_DERIVED_DATA_PATH" \ | ||
-sdk "$sdk" \ | ||
-destination "$destination" \ | ||
BUILD_LIBRARY_FOR_DISTRIBUTION=YES \ | ||
INSTALL_PATH='Library/Frameworks' \ | ||
OTHER_SWIFT_FLAGS=-no-verify-emitted-module-interface | ||
|
||
if [ "$sdk" = "macosx" ]; then | ||
FRAMEWORK_MODULES_PATH="$XCODEBUILD_ARCHIVE_PATH/Products/Library/Frameworks/$scheme.framework/Versions/Current/Modules" | ||
mkdir -p "$FRAMEWORK_MODULES_PATH" | ||
cp -r \ | ||
"$XCODEBUILD_DERIVED_DATA_PATH/Build/Intermediates.noindex/ArchiveIntermediates/$scheme/BuildProductsPath/Release/$scheme.swiftmodule" \ | ||
"$FRAMEWORK_MODULES_PATH/$scheme.swiftmodule" | ||
rm -rf "$XCODEBUILD_ARCHIVE_PATH/Products/Library/Frameworks/$scheme.framework/Modules" | ||
ln -s Versions/Current/Modules "$XCODEBUILD_ARCHIVE_PATH/Products/Library/Frameworks/$scheme.framework/Modules" | ||
else | ||
FRAMEWORK_MODULES_PATH="$XCODEBUILD_ARCHIVE_PATH/Products/Library/Frameworks/$scheme.framework/Modules" | ||
mkdir -p "$FRAMEWORK_MODULES_PATH" | ||
cp -r \ | ||
"$XCODEBUILD_DERIVED_DATA_PATH/Build/Intermediates.noindex/ArchiveIntermediates/$scheme/BuildProductsPath/Release-$sdk/$scheme.swiftmodule" \ | ||
"$FRAMEWORK_MODULES_PATH/$scheme.swiftmodule" | ||
fi | ||
|
||
# Delete private and package swiftinterface | ||
rm -f "$FRAMEWORK_MODULES_PATH/$scheme.swiftmodule/*.package.swiftinterface" | ||
rm -f "$FRAMEWORK_MODULES_PATH/$scheme.swiftmodule/*.private.swiftinterface" | ||
} | ||
|
||
build_framework "iphonesimulator" "generic/platform=iOS Simulator" "$PACKAGE_NAME" | ||
build_framework "iphoneos" "generic/platform=iOS" "$PACKAGE_NAME" | ||
build_framework "macosx" "generic/platform=macOS" "$PACKAGE_NAME" | ||
|
||
echo "Builds completed successfully." | ||
|
||
cd $PROJECT_BUILD_DIR | ||
|
||
rm -rf "$PACKAGE_NAME.xcframework" | ||
xcodebuild -create-xcframework \ | ||
-framework $PACKAGE_NAME-iphonesimulator.xcarchive/Products/Library/Frameworks/$PACKAGE_NAME.framework \ | ||
-framework $PACKAGE_NAME-iphoneos.xcarchive/Products/Library/Frameworks/$PACKAGE_NAME.framework \ | ||
-framework $PACKAGE_NAME-macosx.xcarchive/Products/Library/Frameworks/$PACKAGE_NAME.framework \ | ||
-output $PACKAGE_NAME.xcframework | ||
|
||
cp -r $PACKAGE_NAME-iphonesimulator.xcarchive/dSYMs $PACKAGE_NAME.xcframework/ios-arm64_x86_64-simulator | ||
cp -r $PACKAGE_NAME-iphoneos.xcarchive/dSYMs $PACKAGE_NAME.xcframework/ios-arm64 | ||
cp -r $PACKAGE_NAME-macosx.xcarchive/dSYMs $PACKAGE_NAME.xcframework/macos-arm64_x86_64 | ||
|
||
zip -r "$PACKAGE_NAME.xcframework.zip" "$PACKAGE_NAME.xcframework" |