We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0398836 commit 94841bfCopy full SHA for 94841bf
1 file changed
.github/workflows/main.yml
@@ -386,10 +386,14 @@ jobs:
386
- name: build llama.cpp main library (mingw)
387
if: matrix.name == 'windows-gpu' && steps.cache-llama.outputs.cache-hit != 'true'
388
shell: msys2 {0}
389
- run: make build/llama.cpp.stamp ${{ matrix.make }}
+ run: |
390
+ make build/llama.cpp.stamp ${{ matrix.make }} LLAMA_ARGS="--target common"
391
+ make build/llama.cpp.stamp ${{ matrix.make }} LLAMA_ARGS="--target llama"
392
+ make build/llama.cpp.stamp ${{ matrix.make }} LLAMA_ARGS="--target ggml"
393
+ make build/llama.cpp.stamp ${{ matrix.make }} LLAMA_ARGS="--target ggml-base"
394
395
- name: copy backend modules to dist
- if: matrix.name == 'windows-gpu'
396
+ if: false #matrix.name == 'windows-gpu'
397
398
run: |
399
mkdir -p dist
0 commit comments