repair rknn wheels (#2257)

This commit is contained in:
Fangjun Kuang
2025-05-28 17:39:55 +08:00
committed by GitHub
parent 16a3449945
commit d8b5a58898

View File

@@ -25,6 +25,11 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Download rknn-toolkit2 - name: Download rknn-toolkit2
shell: bash shell: bash
run: | run: |
@@ -109,10 +114,28 @@ jobs:
export SHERPA_ONNX_CMAKE_ARGS="-DSHERPA_ONNX_ENABLE_RKNN=ON" export SHERPA_ONNX_CMAKE_ARGS="-DSHERPA_ONNX_ENABLE_RKNN=ON"
python3 setup.py bdist_wheel python3 setup.py bdist_wheel
mv dist wheelhouse
- name: Display results - name: Display results
shell: bash shell: bash
run: | run: |
ls -lh dist ls -lh wheelhouse
- name: Fix wheel name
shell: bash
run: |
python3 -m pip install auditwheel
auditwheel show ./wheelhouse/*.whl
auditwheel repair --help
auditwheel --verbose repair --plat manylinux_2_27_aarch64 \
--exclude librknnrt.so \
--exclude libasound.so.2 \
-w ./dist ./wheelhouse/*.whl
ls -lh dist/*.whl
- name: Show glibc versions - name: Show glibc versions
shell: bash shell: bash