-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish pre-built jni libs for windows and osx (#1056)
- Loading branch information
1 parent
5cce159
commit 2f8c489
Showing
4 changed files
with
298 additions
and
22 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
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,140 @@ | ||
name: macos-jni | ||
|
||
on: | ||
push: | ||
branches: | ||
- jni | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+*' | ||
|
||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: macos-jni-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
macos_jni: | ||
runs-on: ${{ matrix.os }} | ||
name: ${{ matrix.arch }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest] | ||
arch: [arm64, x86_64] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' # See 'Supported distributions' for available options | ||
java-version: '21' | ||
|
||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.os }}-${{ matrix.arch }} | ||
|
||
- name: Configure CMake | ||
shell: bash | ||
run: | | ||
export CMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | ||
cmake --version | ||
mkdir build | ||
cd build | ||
arch=${{ matrix.arch }} | ||
cmake \ | ||
-D BUILD_SHARED_LIBS=ON \ | ||
-D CMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_OSX_ARCHITECTURES=$arch \ | ||
-DSHERPA_ONNX_ENABLE_JNI=ON \ | ||
-DCMAKE_INSTALL_PREFIX=./install \ | ||
.. | ||
- name: Build sherpa-onnx for macos | ||
shell: bash | ||
run: | | ||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | ||
cd build | ||
make -j2 | ||
make install | ||
ls -lh lib | ||
ls -lh bin | ||
file ./bin/sherpa-onnx | ||
rm -rf ./install/pkgconfig | ||
rm -rf ./install/share | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: release-jni-macos-${{ matrix.arch }} | ||
path: build/install/* | ||
|
||
- name: Copy files | ||
shell: bash | ||
run: | | ||
du -h -d1 . | ||
SHERPA_ONNX_VERSION=v$(grep "SHERPA_ONNX_VERSION" ./CMakeLists.txt | cut -d " " -f 2 | cut -d '"' -f 2) | ||
arch=${{ matrix.arch }} | ||
dst=sherpa-onnx-${SHERPA_ONNX_VERSION}-osx-$arch-jni | ||
mkdir -p $dst | ||
cp -a build/install/bin $dst/ | ||
cp -a build/install/lib $dst/ | ||
cp -a build/install/include $dst/ | ||
brew install tree | ||
tree $dst | ||
tar cjvf ${dst}.tar.bz2 $dst | ||
du -h -d1 . | ||
- name: Publish to huggingface | ||
if: (github.repository_owner == 'csukuangfj' || github.repository_owner == 'k2-fsa') && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') | ||
env: | ||
HF_TOKEN: ${{ secrets.HF_TOKEN }} | ||
uses: nick-fields/retry@v3 | ||
with: | ||
max_attempts: 20 | ||
timeout_seconds: 200 | ||
shell: bash | ||
command: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Fangjun Kuang" | ||
rm -rf huggingface | ||
export GIT_CLONE_PROTECTION_ACTIVE=false | ||
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-libs huggingface | ||
cd huggingface | ||
mkdir -p jni | ||
cp -v ../sherpa-onnx-*.tar.bz2 ./jni | ||
git status | ||
git lfs track "*.bz2" | ||
git add . | ||
git commit -m "add more files" | ||
git push https://csukuangfj:[email protected]/csukuangfj/sherpa-onnx-libs main | ||
- name: Release pre-compiled binaries and libs for linux x64 | ||
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-*.tar.bz2 |
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,110 @@ | ||
name: windows-x64-jni | ||
|
||
on: | ||
push: | ||
branches: | ||
- jni | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+*' | ||
|
||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: windows-x64-jni-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
windows_x64_jni: | ||
name: windows x64 jni | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' # See 'Supported distributions' for available options | ||
java-version: '21' | ||
|
||
- name: Configure CMake | ||
shell: bash | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake -A x64 -D CMAKE_BUILD_TYPE=Release -D BUILD_SHARED_LIBS=ON -DSHERPA_ONNX_ENABLE_JNI=ON -DCMAKE_INSTALL_PREFIX=./install .. | ||
- name: Build sherpa-onnx for windows | ||
shell: bash | ||
run: | | ||
cd build | ||
cmake --build . --config Release -- -m:2 | ||
cmake --build . --config Release --target install -- -m:2 | ||
ls -lh ./bin/Release/sherpa-onnx.exe | ||
rm -rf install/share | ||
rm -rf install/lib/pkgconfig | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: release-jni-windows-x64 | ||
path: build/install/* | ||
|
||
- name: Copy files | ||
shell: bash | ||
run: | | ||
SHERPA_ONNX_VERSION=v$(grep "SHERPA_ONNX_VERSION" ./CMakeLists.txt | cut -d " " -f 2 | cut -d '"' -f 2) | ||
dst=sherpa-onnx-${SHERPA_ONNX_VERSION}-win-x64-jni | ||
mkdir -p $dst | ||
cp -a build/install/bin $dst/ | ||
cp -a build/install/lib $dst/ | ||
cp -a build/install/include $dst/ | ||
tar cjvf ${dst}.tar.bz2 $dst | ||
# 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' || github.event_name == 'workflow_dispatch') | ||
env: | ||
HF_TOKEN: ${{ secrets.HF_TOKEN }} | ||
uses: nick-fields/retry@v3 | ||
with: | ||
max_attempts: 20 | ||
timeout_seconds: 200 | ||
shell: bash | ||
command: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Fangjun Kuang" | ||
rm -rf huggingface | ||
export GIT_CLONE_PROTECTION_ACTIVE=false | ||
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/sherpa-onnx-libs huggingface | ||
cd huggingface | ||
mkdir -p jni | ||
cp -v ../sherpa-onnx-*.tar.bz2 ./jni | ||
git status | ||
git lfs track "*.bz2" | ||
git add . | ||
git commit -m "upload sherpa-onnx-${SHERPA_ONNX_VERSION}" | ||
git push https://csukuangfj:[email protected]/csukuangfj/sherpa-onnx-libs main | ||
- name: Release pre-compiled binaries and libs for Windows x64 | ||
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-*.tar.bz2 |
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