We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbaaf6a commit 052c1eeCopy full SHA for 052c1ee
1 file changed
.github/workflows/windows-native-build.yml
@@ -32,11 +32,14 @@ jobs:
32
# cd ${{ github.workspace }}\whisper.cpp\build\bin\Release
33
# ren whisper.dll libwhisper.dll
34
- name: Build Windows Native Libraries
35
- run: make windows
+ run: |
36
+ cd whisper.cpp
37
+ cmake -S . -B ./build -A x64 -DCMAKE_BUILD_TYPE=Release -DWHISPER_BUILD_TESTS=OFF -DWHISPER_BUILD_EXAMPLES=OFF
38
+ cd ./build
39
+ msbuild ALL_BUILD.vcxproj -t:build -p:configuration=Release -p:platform=x64
40
41
- name: Upload Windows Build Artifacts
42
uses: actions/upload-artifact@v4
43
with:
44
name: windows-build
-# path: whisper.cpp/build/bin/Release/libwhisper.dll
- path: runtimes/windows-*/*
45
+ path: whisper.cpp/build/bin/Release/libwhisper.dll
0 commit comments