Skip to content

Commit

Permalink
build: add windows cpu release build github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Adriankhl committed May 28, 2024
1 parent 56c0b75 commit a17e89b
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,22 @@ jobs:
run: |
git submodule update --init --recursive
- name: Install scoop
- name: Scoop dependencies
shell: powershell
run: |
irm get.scoop.sh | iex
scoop install ninja
scoop install ninja llvm
- name: Build
id: cmake_build
run: |
mkdir build
cd build
cmake .. -GNinja -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DLLAMA_NATIVE=OFF -DLLAMA_VULKAN=OFF -DCMAKE_BUILD_TYPE=Release
ninja -j $(nproc)
- name: Archive library
uses: actions/upload-artifact@v4
with:
name: windows_cpu_release.zip
path: build/libgodot_llm.windows.release.amd64.dll

0 comments on commit a17e89b

Please sign in to comment.