Skip to content

Add Go API for TTS (#377) #59

Add Go API for TTS (#377)

Add Go API for TTS (#377) #59

name: build-xcframework
on:
push:
branches:
- master
- xcframework
paths:
- './build-ios.sh'
tags:
- '*'
workflow_dispatch:
concurrency:
group: build-xcframework-${{ github.ref }}
cancel-in-progress: true
jobs:
build_xcframework:
name: Build xcframework on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest]
steps:
- uses: actions/checkout@v4
- name: Build iOS
shell: bash
run: |
./build-ios.sh
- name: Display artifacts
shell: bash
run: |
brew install tree
tree -L 2 ./build-ios
- name: Package artifacts
shell: bash
run: |
SHERPA_ONNX_VERSION=v$(grep "SHERPA_ONNX_VERSION" ./CMakeLists.txt | cut -d " " -f 2 | cut -d '"' -f 2)
echo "SHERPA_ONNX_VERSION=$SHERPA_ONNX_VERSION" >> "$GITHUB_ENV"
rm -rf build-ios/build
rm -rf build-ios/install
rm -rf build-ios/ios-onnxruntime/.git
tree build-ios
filename=sherpa-onnx-${SHERPA_ONNX_VERSION}-ios.tar.bz2
tar cjvf $filename ./build-ios
ls -lh
- uses: actions/upload-artifact@v3
with:
name: sherpa-onnx-ios-libs
path: ./build-ios
# https://huggingface.co/docs/hub/spaces-github-actions
- name: Publish to huggingface
if: github.repository_owner == 'csukuangfj' || github.repository_owner == 'k2-fsa' && github.event_name == 'push' && contains(github.ref, 'refs/tags/')
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "Fangjun Kuang"
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-libs huggingface
cd huggingface
git lfs pull
cp -v ../sherpa-onnx-*-ios.tar.bz2 ./
git status
git lfs track "*.bz2"
git add .
git commit -m "upload sherpa-onnx-${SHERPA_ONNX_VERSION}-ios.tar.bz2"
git push https://csukuangfj:[email protected]/csukuangfj/sherpa-onnx-libs main
- name: Release xcframework
if: github.repository_owner == 'csukuangfj' || github.repository_owner == 'k2-fsa' && github.event_name == 'push' && contains(github.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@v2
with:
file_glob: true
overwrite: true
file: sherpa-onnx-*-ios.tar.bz2