Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions .github/workflows/xcframework.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: XCFramework

# Builds NemoTextProcessing.xcframework (macOS universal + iOS device + iOS
# simulator) so Apple consumers (e.g. FluidAudio) can link the native FFI via
# a SwiftPM `.binaryTarget(url:checksum:)` instead of hand-linking the lib.
on:
push:
tags: ["v*"]
# Validate the build itself when the workflow or build inputs change; the
# release-upload step is tag-gated so PR runs only produce a CI artifact.
pull_request:
paths:
- ".github/workflows/xcframework.yml"
- "build-xcframework.sh"
- "swift/**"
workflow_dispatch:

permissions:
contents: write

jobs:
xcframework:
name: Build & publish xcframework
runs-on: macos-latest
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable
with:
targets: aarch64-apple-darwin,x86_64-apple-darwin,aarch64-apple-ios,aarch64-apple-ios-sim

- name: Build xcframework
run: ./build-xcframework.sh

- name: Package + checksum
working-directory: output
run: |
zip -ry NemoTextProcessing.xcframework.zip NemoTextProcessing.xcframework
# SwiftPM binary-target checksum is the SHA-256 of the zip.
shasum -a 256 NemoTextProcessing.xcframework.zip | cut -d' ' -f1 \
> NemoTextProcessing.xcframework.zip.checksum
echo "checksum: $(cat NemoTextProcessing.xcframework.zip.checksum)"

- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: NemoTextProcessing-xcframework
path: |
output/NemoTextProcessing.xcframework.zip
output/NemoTextProcessing.xcframework.zip.checksum
output/NemoTextProcessing.swift

- name: Attach to release
if: startsWith(github.ref, 'refs/tags/')
env:
GH_TOKEN: ${{ github.token }}
run: |
gh release upload "${GITHUB_REF_NAME}" \
output/NemoTextProcessing.xcframework.zip \
output/NemoTextProcessing.xcframework.zip.checksum \
output/NemoTextProcessing.swift --clobber
Loading