Commit 9fe3ff7 1 parent b756fe8 commit 9fe3ff7 Copy full SHA for 9fe3ff7
File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -298,6 +298,10 @@ jobs:
298
298
299
299
pip install .
300
300
301
+ - name : Generate licenses.json
302
+ shell : bash
303
+ run : python generate_licenses.py > licenses.json
304
+
301
305
- name : Cache Nuitka (ccache, module-cache)
302
306
uses : actions/cache@v2
303
307
id : nuitka-cache
@@ -327,6 +331,7 @@ jobs:
327
331
--include-package-data=pyopenjtalk
328
332
--include-package-data=resampy
329
333
--include-data-file="VERSION.txt=./"
334
+ --include-data-file="licenses.json=./"
330
335
--msvc=14.2
331
336
--follow-imports
332
337
--no-prefer-source-code
Original file line number Diff line number Diff line change @@ -136,6 +136,8 @@ Build Tools for Visual Studio 2019 が必要です。
136
136
``` bash
137
137
pip install -r requirements-dev.txt
138
138
139
+ python generate_licenses.py > licenses.json
140
+
139
141
python -m nuitka \
140
142
--standalone \
141
143
--plugin-enable=numpy \
@@ -145,6 +147,7 @@ python -m nuitka \
145
147
--include-package-data=pyopenjtalk \
146
148
--include-package-data=resampy \
147
149
--include-data-file=VERSION.txt=./ \
150
+ --include-data-file=licenses.json=./ \
148
151
--include-data-file=C:/path/to/cuda/* .dll=./ \
149
152
--include-data-file=C:/path/to/libtorch/* .dll=./ \
150
153
--include-data-file=C:/音声ライブラリへのパス/* .bin=./ \
You can’t perform that action at this time.
0 commit comments