-
Notifications
You must be signed in to change notification settings - Fork 1.5k
264 lines (214 loc) · 8.32 KB
/
Copy pathwindows-arm64.yaml
File metadata and controls
264 lines (214 loc) · 8.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
name: windows-arm64
on:
push:
branches:
- master
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
paths:
- '.github/workflows/windows-arm64.yaml'
- 'cmake/**'
- 'sherpa-onnx/csrc/*'
workflow_dispatch:
concurrency:
group: windows-arm64-${{ github.ref }}
cancel-in-progress: true
jobs:
windows_arm64:
name: shared-${{ matrix.shared_lib }} tts-${{ matrix.with_tts }} static CRT ${{ matrix.use_static_crt }} ${{ matrix.build_type }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-2022]
build_type: [Release, Debug, MinSizeRel, RelWithDebInfo]
shared_lib: [ON, OFF]
with_tts: [ON, OFF]
use_static_crt: [ON, OFF]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up MSVC
uses: ilammy/msvc-dev-cmd@v1
- name: find dumpbin
shell: bash
run: |
which dumpbin
- name: Update version
shell: bash
run: |
./new-release.sh
git diff .
- name: Configure CMake
shell: bash
run: |
mkdir build
cd build
cmake \
-A ARM64 \
-DSHERPA_ONNX_ENABLE_TTS=${{ matrix.with_tts }} \
-DSHERPA_ONNX_USE_STATIC_CRT=${{ matrix.use_static_crt }} \
-D CMAKE_BUILD_TYPE=${{ matrix.build_type }} \
-D SHERPA_ONNX_ENABLE_PORTAUDIO=OFF \
-D BUILD_SHARED_LIBS=${{ matrix.shared_lib }} \
-D CMAKE_INSTALL_PREFIX=./install \
-D BUILD_ESPEAK_NG_EXE=OFF \
..
- name: Check 1
shell: bash
run: |
cd build
cat sherpa-onnx/csrc/sherpa-onnx.vcxproj
- name: Check 2
shell: cmd
run: |
cd build
findstr /R /C:"<RuntimeLibrary>" sherpa-onnx\csrc\sherpa-onnx.vcxproj
- uses: actions/upload-artifact@v4
with:
name: sherpa-onnx-vcxproj-release-windows-arm64-${{ matrix.shared_lib }}-${{ matrix.with_tts }}-static-crt-${{ matrix.use_static_crt }}-${{ matrix.build_type }}
path: build/sherpa-onnx/csrc/sherpa-onnx.vcxproj
- name: Check 3
shell: bash
run: |
cd build
cat c-api-examples/vad-whisper-c-api.vcxproj
- name: Check 4
shell: cmd
run: |
cd build
findstr /R /C:"<RuntimeLibrary>" "c-api-examples\vad-whisper-c-api.vcxproj"
- uses: actions/upload-artifact@v4
with:
name: vad-whisper-c-api-vcxproj-release-windows-arm64-${{ matrix.shared_lib }}-${{ matrix.with_tts }}-static-crt-${{ matrix.use_static_crt }}-${{ matrix.build_type }}
path: build/c-api-examples/vad-whisper-c-api.vcxproj
- name: Build sherpa-onnx for windows
shell: bash
run: |
cd build
cmake --build . --config ${{ matrix.build_type }} -- -m:2
cmake --build . --config ${{ matrix.build_type }} --target install -- -m:2
ls -lh ./bin/${{ matrix.build_type }}/sherpa-onnx.exe
- name: Show exe
shell: bash
run: |
ls -lh $PWD/build/bin/${{ matrix.build_type }}
- name: Dump CRT dependencies
shell: cmd
run: |
dumpbin /dependents build\bin\${{ matrix.build_type }}\sherpa-onnx.exe
- uses: actions/upload-artifact@v4
with:
name: release-windows-arm64-${{ matrix.shared_lib }}-${{ matrix.with_tts }}-static-crt-${{ matrix.use_static_crt }}-${{ matrix.build_type }}
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)
shared_lib=${{ matrix.shared_lib }}
use_static_crt=${{ matrix.use_static_crt }}
if [[ $shared_lib == "ON" ]]; then
if [[ $use_static_crt == ON ]]; then
suffix=shared-MT-${{ matrix.build_type }}
else
suffix=shared-MD-${{ matrix.build_type }}
fi
else
if [[ $use_static_crt == ON ]]; then
suffix=static-MT-${{ matrix.build_type }}
else
suffix=static-MD-${{ matrix.build_type }}
fi
fi
if [[ ${{ matrix.with_tts }} == ON ]]; then
dst=sherpa-onnx-${SHERPA_ONNX_VERSION}-win-arm64-$suffix
else
dst=sherpa-onnx-${SHERPA_ONNX_VERSION}-win-arm64-$suffix-no-tts
fi
if [[ "${{ matrix.build_type }}" == "Debug" || "${{ matrix.build_type }}" == "RelWithDebInfo" ]]; then
echo "Copy matching PDB files..."
build_bin_dir=build/bin/${{ matrix.build_type }}
install_bin_dir=build/install/bin
for exe in ${install_bin_dir}/*.exe; do
base=$(basename "$exe" .exe)
pdb=${build_bin_dir}/${base}.pdb
if [[ -f "$pdb" ]]; then
echo "Copying $pdb"
cp "$pdb" ${install_bin_dir}/
else
echo "No PDB found for $base"
fi
done
fi
mkdir $dst
cp -a build/install/bin $dst/
cp -a build/install/lib $dst/
cp -a build/install/include $dst/
if [[ $shared_lib == "ON" && -f build/install/lib/onnxruntime.lib ]]; then
cp -v build/install/lib/onnxruntime.lib $dst/lib/
fi
rm -rf $dst/lib/pkgconfig
rm -f $dst/lib/cargs.dll $dst/lib/cargs.lib $dst/lib/cargs.h
rm -f $dst/include/cargs.h
ls -lh $dst/bin/
echo "---"
ls -lh $dst/lib/
tar cjvf ${dst}.tar.bz2 $dst
lib_dst=${dst}-lib
mkdir -p ${lib_dst}/lib
if [[ $shared_lib == "ON" ]]; then
cp -av build/install/lib/*.dll ${lib_dst}/lib/
cp -av build/install/lib/*.lib ${lib_dst}/lib/
rm -f ${lib_dst}/lib/cargs.dll ${lib_dst}/lib/cargs.lib
else
cp -av build/install/lib/*.lib ${lib_dst}/lib/
rm -f ${lib_dst}/lib/cargs.lib
fi
ls -lh ${lib_dst}/lib/
tar cjvf ${lib_dst}.tar.bz2 ${lib_dst}
ls -lh $dst/
ls -lh *.tar.bz2
# 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: |
SHERPA_ONNX_VERSION=$(grep "SHERPA_ONNX_VERSION" ./CMakeLists.txt | cut -d " " -f 2 | cut -d '"' -f 2)
git config --global user.email "csukuangfj@gmail.com"
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/csukuangfj2/sherpa-onnx-libs huggingface
cd huggingface
dst=win64/$SHERPA_ONNX_VERSION
mkdir -p $dst
cp -v ../sherpa-onnx-*.tar.bz2 $dst
git status
git lfs track "*.bz2"
git add .
git commit -m "upload sherpa-onnx-${SHERPA_ONNX_VERSION}"
git push https://csukuangfj2:$HF_TOKEN@huggingface.co/csukuangfj2/sherpa-onnx-libs main
- name: Release pre-compiled binaries and libs for Windows arm64
if: github.repository_owner == 'csukuangfj' && github.event_name == 'push' && contains(github.ref, 'refs/tags/')
uses: svenstaro/upload-release-action@v2
with:
file_glob: true
overwrite: true
file: sherpa-onnx-*-win-arm64*.tar.bz2
repo_name: k2-fsa/sherpa-onnx
repo_token: ${{ secrets.UPLOAD_GH_SHERPA_ONNX_TOKEN }}
tag: v1.12.28
- name: Release pre-compiled binaries and libs for Windows arm64
if: 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-*-win-arm64*.tar.bz2