-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish pre-compiled libs for Android. (#217)
- Loading branch information
1 parent
de26736
commit 5d820b8
Showing
7 changed files
with
260 additions
and
64 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 |
---|---|---|
@@ -0,0 +1,144 @@ | ||
name: android | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- '.github/workflows/android.yaml' | ||
- 'CMakeLists.txt' | ||
- 'cmake/**' | ||
- 'sherpa-onnx/csrc/*' | ||
- 'sherpa-onnx/jni/*' | ||
- 'build-android*.sh' | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- '.github/workflows/android.yaml' | ||
- 'CMakeLists.txt' | ||
- 'cmake/**' | ||
- 'sherpa-onnx/csrc/*' | ||
- 'sherpa-onnx/jni/*' | ||
- 'build-android*.sh' | ||
|
||
release: | ||
types: | ||
- published | ||
|
||
workflow_dispatch: | ||
inputs: | ||
release: | ||
description: "Whether to release" | ||
type: boolean | ||
|
||
env: | ||
RELEASE: | ||
|- # Release if there is a release tag name or a release flag in workflow_dispatch | ||
${{ github.event.release.tag_name != '' || github.event.inputs.release == 'true' }} | ||
|
||
concurrency: | ||
group: android-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-android-libs: | ||
name: Android for ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Display NDK HOME | ||
shell: bash | ||
run: | | ||
echo "ANDROID_NDK_LATEST_HOME: ${ANDROID_NDK_LATEST_HOME}" | ||
ls -lh ${ANDROID_NDK_LATEST_HOME} | ||
- name: build android arm64-v8a | ||
shell: bash | ||
run: | | ||
export ANDROID_NDK=$ANDROID_NDK_LATEST_HOME | ||
./build-android-arm64-v8a.sh | ||
mkdir -p jniLibs/arm64-v8a/ | ||
cp -v ./build-android-arm64-v8a/install/lib/*.so ./jniLibs/arm64-v8a/ | ||
- name: build android armv7-eabi | ||
shell: bash | ||
run: | | ||
export ANDROID_NDK=$ANDROID_NDK_LATEST_HOME | ||
./build-android-armv7-eabi.sh | ||
mkdir -p ./jniLibs/armeabi-v7a/ | ||
cp -v ./build-android-armv7-eabi/install/lib/*.so ./jniLibs/armeabi-v7a/ | ||
- name: build android x86_64 | ||
shell: bash | ||
run: | | ||
export ANDROID_NDK=$ANDROID_NDK_LATEST_HOME | ||
./build-android-x86-64.sh | ||
mkdir -p ./jniLibs/x86_64 | ||
cp -v ./build-android-x86-64/install/lib/*.so ./jniLibs/x86_64 | ||
- name: build android x86 | ||
shell: bash | ||
run: | | ||
export ANDROID_NDK=$ANDROID_NDK_LATEST_HOME | ||
./build-android-x86.sh | ||
mkdir -p ./jniLibs/x86 | ||
cp -v ./build-android-x86/install/lib/*.so ./jniLibs/x86 | ||
- name: Copy files | ||
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" | ||
filename=sherpa-onnx-${SHERPA_ONNX_VERSION}-android.tar.bz2 | ||
tar cjvf $filename ./jniLibs | ||
ls -lh | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: sherpa-onnx-android-libs | ||
path: ./jniLibs | ||
|
||
# https://huggingface.co/docs/hub/spaces-github-actions | ||
- name: Publish to huggingface | ||
if: github.repository_owner == 'csukuangfj' || github.repository_owner == 'k2-fsa' && env.RELEASE == 'true' | ||
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-*-android.tar.bz2 ./ | ||
git status | ||
git lfs track "*.bz2" | ||
git add . | ||
git commit -m "upload sherpa-onnx-${SHERPA_ONNX_VERSION}-android.tar.bz2" | ||
git push https://csukuangfj:[email protected]/csukuangfj/sherpa-onnx-libs main | ||
- name: Release android libs | ||
if: env.RELEASE == 'true' | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
file_glob: true | ||
overwrite: true | ||
file: sherpa-onnx-*-android.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
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
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,90 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
dir=$PWD/build-android-x86 | ||
|
||
mkdir -p $dir | ||
cd $dir | ||
|
||
# Note from https://github.com/Tencent/ncnn/wiki/how-to-build#build-for-android | ||
# (optional) remove the hardcoded debug flag in Android NDK android-ndk | ||
# issue: https://github.com/android/ndk/issues/243 | ||
# | ||
# open $ANDROID_NDK/build/cmake/android.toolchain.cmake for ndk < r23 | ||
# or $ANDROID_NDK/build/cmake/android-legacy.toolchain.cmake for ndk >= r23 | ||
# | ||
# delete "-g" line | ||
# | ||
# list(APPEND ANDROID_COMPILER_FLAGS | ||
# -g | ||
# -DANDROID | ||
|
||
if [ -z $ANDROID_NDK ]; then | ||
ANDROID_NDK=/ceph-fj/fangjun/software/android-sdk/ndk/21.0.6113669 | ||
# or use | ||
# ANDROID_NDK=/ceph-fj/fangjun/software/android-ndk | ||
# | ||
# Inside the $ANDROID_NDK directory, you can find a binary ndk-build | ||
# and some other files like the file "build/cmake/android.toolchain.cmake" | ||
|
||
if [ ! -d $ANDROID_NDK ]; then | ||
# For macOS, I have installed Android Studio, select the menu | ||
# Tools -> SDK manager -> Android SDK | ||
# and set "Android SDK location" to /Users/fangjun/software/my-android | ||
ANDROID_NDK=/Users/fangjun/software/my-android/ndk/22.1.7171670 | ||
fi | ||
fi | ||
|
||
if [ ! -d $ANDROID_NDK ]; then | ||
echo Please set the environment variable ANDROID_NDK before you run this script | ||
exit 1 | ||
fi | ||
|
||
echo "ANDROID_NDK: $ANDROID_NDK" | ||
sleep 1 | ||
|
||
onnxruntime_version=v1.15.1 | ||
|
||
if [ ! -f ./android-onnxruntime-libs/$onnxruntime_version/jni/x86/libonnxruntime.so ]; then | ||
GIT_LFS_SKIP_SMUDGE=1 git clone https://huggingface.co/csukuangfj/android-onnxruntime-libs | ||
pushd android-onnxruntime-libs | ||
git lfs pull --include "$onnxruntime_version/jni/x86/libonnxruntime.so" | ||
ln -s $onnxruntime_version/jni . | ||
ln -s $onnxruntime_version/headers . | ||
popd | ||
fi | ||
|
||
ls -l ./android-onnxruntime-libs/jni/x86/libonnxruntime.so | ||
|
||
# check filesize | ||
filesize=$(ls -l ./android-onnxruntime-libs/jni/x86/libonnxruntime.so | tr -s " " " " | cut -d " " -f 5) | ||
if (( $filesize < 1000 )); then | ||
ls -lh ./android-onnxruntime-libs/jni/x86/libonnxruntime.so | ||
echo "Please use: git lfs pull to download libonnxruntime.so" | ||
exit 1 | ||
fi | ||
|
||
export SHERPA_ONNXRUNTIME_LIB_DIR=$dir/android-onnxruntime-libs/jni/x86/ | ||
export SHERPA_ONNXRUNTIME_INCLUDE_DIR=$dir/android-onnxruntime-libs/headers/ | ||
|
||
echo "SHERPA_ONNXRUNTIME_LIB_DIR: $SHERPA_ONNXRUNTIME_LIB_DIR" | ||
echo "SHERPA_ONNXRUNTIME_INCLUDE_DIR $SHERPA_ONNXRUNTIME_INCLUDE_DIR" | ||
|
||
cmake -DCMAKE_TOOLCHAIN_FILE="$ANDROID_NDK/build/cmake/android.toolchain.cmake" \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DBUILD_SHARED_LIBS=ON \ | ||
-DSHERPA_ONNX_ENABLE_PYTHON=OFF \ | ||
-DSHERPA_ONNX_ENABLE_TESTS=OFF \ | ||
-DSHERPA_ONNX_ENABLE_CHECK=OFF \ | ||
-DSHERPA_ONNX_ENABLE_PORTAUDIO=OFF \ | ||
-DSHERPA_ONNX_ENABLE_JNI=ON \ | ||
-DCMAKE_INSTALL_PREFIX=./install \ | ||
-DANDROID_ABI="x86" \ | ||
-DSHERPA_ONNX_ENABLE_C_API=OFF \ | ||
-DSHERPA_ONNX_ENABLE_WEBSOCKET=OFF \ | ||
-DANDROID_PLATFORM=android-21 .. | ||
|
||
# make VERBOSE=1 -j4 | ||
make -j4 | ||
make install/strip | ||
cp -fv android-onnxruntime-libs/jni/x86/libonnxruntime.so install/lib |
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