We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb6a8f commit 56c0b75Copy full SHA for 56c0b75
.github/workflows/build.yml
@@ -136,4 +136,22 @@ jobs:
136
uses: actions/upload-artifact@v4
137
with:
138
name: linux_vulkan_debug.zip
139
- path: build/libgodot_llm.linux.debug.x86_64.so
+ path: build/libgodot_llm.linux.debug.x86_64.so
140
+
141
+ windows-latest-cmake-cpu-release:
142
+ runs-on: windows-latest
143
+ steps:
144
+ - name: Clone
145
+ id: checkout
146
+ uses: actions/checkout@v4
147
148
+ - name: Clone submodule
149
+ id: clone_submodule
150
+ run: |
151
+ git submodule update --init --recursive
152
153
+ - name: Install scoop
154
+ shell: powershell
155
156
+ irm get.scoop.sh | iex
157
+ scoop install ninja
0 commit comments