-
Notifications
You must be signed in to change notification settings - Fork 474
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish npm package with node-addon-api for Windows (#838)
- Loading branch information
1 parent
e1bb928
commit 37a4135
Showing
15 changed files
with
282 additions
and
75 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
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,110 @@ | ||
name: npm-addon-win-x64 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: npm-addon-win-x64-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
jobs: | ||
npm-addon-win-x64: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest] | ||
python-version: ["3.8"] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Display node version | ||
shell: bash | ||
run: | | ||
node --version | ||
- name: Build sherpa-onnx | ||
shell: bash | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX=./install \ | ||
-DBUILD_SHARED_LIBS=ON \ | ||
-DSHERPA_ONNX_ENABLE_WEBSOCKET=OFF \ | ||
-DSHERPA_ONNX_ENABLE_PORTAUDIO=OFF \ | ||
-DSHERPA_ONNX_ENABLE_BINARY=OFF \ | ||
.. | ||
ls -lh _deps/onnxruntime-src/lib/ | ||
cmake --build . --config Release --target install -- -m:6 | ||
ls -lh install/lib | ||
echo "----------" | ||
cp -v _deps/onnxruntime-src/lib/*.lib ./install/lib | ||
echo "----------" | ||
ls -lh install/lib | ||
- name: Build sherpa-onnx node-addon | ||
shell: bash | ||
run: | | ||
d=$PWD | ||
export SHERPA_ONNX_INSTALL_DIR=$d/build/install | ||
cd scripts/node-addon-api/ | ||
npm i | ||
./node_modules/.bin/cmake-js compile --log-level verbose | ||
- name: Prepare for publish | ||
shell: bash | ||
run: | | ||
owner=${{ github.repository_owner }} | ||
export owner | ||
echo "---" | ||
ls -lh build/install/lib/ | ||
echo "---" | ||
ls -lh build/install/lib/ | ||
echo "---" | ||
.github/scripts/node-addon/run.sh | ||
- name: Display files to be published | ||
shell: bash | ||
run: | | ||
ls -lh ./sherpa-onnx-node | ||
- name: Publish | ||
shell: bash | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: | | ||
cd ./sherpa-onnx-node | ||
npm install | ||
npm ci | ||
# see https://docs.npmjs.com/generating-provenance-statements | ||
npm publish --provenance --access public |
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-11, macos-14, ubuntu-20.04, ubuntu-22.04] | ||
os: [macos-11, macos-14, ubuntu-20.04, ubuntu-22.04, windows-latest] | ||
node-version: ["16", "17", "18", "19", "21", "22"] | ||
python-version: ["3.8"] | ||
|
||
|
@@ -53,6 +53,16 @@ jobs: | |
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install Python dependencies | ||
shell: bash | ||
run: | | ||
pip install ninja | ||
- name: Show ninja help | ||
shell: bash | ||
run: | | ||
ninja --help || true | ||
- uses: actions/setup-node@v4 | ||
with: | ||
registry-url: 'https://registry.npmjs.org' | ||
|
@@ -63,12 +73,18 @@ jobs: | |
run: | | ||
node --version | ||
- name: Display npm help | ||
shell: bash | ||
run: | | ||
npm help | ||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.os }}-release-shared | ||
|
||
- name: Build sherpa-onnx | ||
if: matrix.os == 'windows-latest' | ||
shell: bash | ||
run: | | ||
export CMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
|
@@ -77,34 +93,71 @@ jobs: | |
mkdir build | ||
cd build | ||
cmake \ | ||
-DCMAKE_INSTALL_PREFIX=/tmp/sherpa-onnx \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX=./install \ | ||
-DBUILD_SHARED_LIBS=ON \ | ||
-DSHERPA_ONNX_ENABLE_WEBSOCKET=OFF \ | ||
-DSHERPA_ONNX_ENABLE_PORTAUDIO=OFF \ | ||
-DSHERPA_ONNX_ENABLE_BINARY=OFF \ | ||
.. | ||
make -j | ||
make install | ||
ls -lh _deps/onnxruntime-src/lib/ | ||
cmake --build . --config Release --target install -- -m:6 | ||
ls -lh install/lib | ||
echo "----------" | ||
cp -v _deps/onnxruntime-src/lib/*.lib ./install/lib | ||
echo "----------" | ||
ls -lh install/lib | ||
- name: Build sherpa-onnx | ||
if: matrix.os != 'windows-latest' | ||
shell: bash | ||
run: | | ||
export CMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" | ||
mkdir build | ||
cd build | ||
cmake \ | ||
-G Ninja \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DCMAKE_INSTALL_PREFIX=./install \ | ||
-DBUILD_SHARED_LIBS=ON \ | ||
-DSHERPA_ONNX_ENABLE_WEBSOCKET=OFF \ | ||
-DSHERPA_ONNX_ENABLE_PORTAUDIO=OFF \ | ||
-DSHERPA_ONNX_ENABLE_BINARY=OFF \ | ||
.. | ||
cmake --build . --config Release --target install -- -j 6 | ||
- name: Build node-addon-api package | ||
shell: bash | ||
run: | | ||
cd scripts/node-addon-api | ||
d=$PWD | ||
export SHERPA_ONNX_INSTALL_DIR=$d/build/install | ||
export PKG_CONFIG_PATH=/tmp/sherpa-onnx:$PKG_CONFIG_PATH | ||
cd scripts/node-addon-api | ||
ls -lh /tmp/sherpa-onnx | ||
echo $d/build/install | ||
pkg-config --cflags sherpa-onnx | ||
pkg-config --libs sherpa-onnx | ||
ls -lh $d/build/install | ||
npm i | ||
./node_modules/.bin/node-gyp configure build --verbose | ||
./node_modules/.bin/cmake-js compile --log-level verbose | ||
- name: Test streaming transducer | ||
shell: bash | ||
run: | | ||
export PATH=$PWD/build/install/lib:$PATH | ||
export LD_LIBRARY_PATH=$PWD/build/install/lib:$LD_LIBRARY_PATH | ||
cd scripts/node-addon-api | ||
curl -SL -O https://github.com/k2-fsa/sherpa-onnx/releases/download/asr-models/sherpa-onnx-streaming-zipformer-bilingual-zh-en-2023-02-20.tar.bz2 | ||
tar xvf sherpa-onnx-streaming-zipformer-bilingual-zh-en-2023-02-20.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
Oops, something went wrong.