We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56c0b75 commit a17e89bCopy full SHA for a17e89b
.github/workflows/build.yml
@@ -150,8 +150,22 @@ jobs:
150
run: |
151
git submodule update --init --recursive
152
153
- - name: Install scoop
+ - name: Scoop dependencies
154
shell: powershell
155
156
irm get.scoop.sh | iex
157
- scoop install ninja
+ scoop install ninja llvm
158
+
159
+ - name: Build
160
+ id: cmake_build
161
+ run: |
162
+ mkdir build
163
+ cd build
164
+ cmake .. -GNinja -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DLLAMA_NATIVE=OFF -DLLAMA_VULKAN=OFF -DCMAKE_BUILD_TYPE=Release
165
+ ninja -j $(nproc)
166
167
+ - name: Archive library
168
+ uses: actions/upload-artifact@v4
169
+ with:
170
+ name: windows_cpu_release.zip
171
+ path: build/libgodot_llm.windows.release.amd64.dll
0 commit comments