Skip to content

Commit

Permalink
fix dll path
Browse files Browse the repository at this point in the history
  • Loading branch information
takana-v committed Jan 5, 2022
1 parent 45e51aa commit 4a3f4bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -721,14 +721,14 @@ jobs:
ln -sf "$(pwd)/run.dist"/* artifact/
# Copy DLL of core and onnxruntime
ln -sf "$(pwd)/download/onnxruntime/lib"/onnxruntime.dll artifact/core/lib/
ln -sf "$(pwd)/download/core/${{ matrix.voicevox_core_dll_name }}" artifact/core/lib/
ln -sf "$(pwd)/download/onnxruntime/lib"/onnxruntime.dll artifact/
ln -sf "$(pwd)/download/core/${{ matrix.voicevox_core_dll_name }}" artifact/
# Copy DLL dependencies
if [ -f "download/onnxruntime/lib/onnxruntime_providers_cuda.dll" ]; then
# ONNX Runtime providers (Nuitka does not copy dynamic loaded libraries)
ln -sf "$(pwd)/download/onnxruntime/lib"/onnxruntime_*.dll artifact/core/lib/
ln -sf "$(pwd)/download/onnxruntime/lib"/onnxruntime_*.dll artifact/
# CUDA
ln -sf "$(pwd)/download/cuda/bin"/cublas64_*.dll artifact/
Expand Down

0 comments on commit 4a3f4bd

Please sign in to comment.