fix(ollama)

closes #4705
This commit is contained in:
Jacob Heider 2024-01-03 15:44:23 -05:00 committed by Jacob Heider
parent 5aac8f718a
commit 5a32f8df33

View file

@ -14,7 +14,15 @@ build:
- run: |
git submodule init
git submodule update
if: ">=0.0.18"
if: '>=0.0.18'
# 0.1.18 seems to have changed these, and it's breaking x86-64 darwin builds
- run: |
if test -f gen_darwin.sh; then
sed -i 's/-DLLAMA_METAL=on/-DLLAMA_METAL=off -DLLAMA_NATIVE=off -DLLAMA_AVX=on -DLLAMA_AVX2=off -DLLAMA_AVX512=off -DLLAMA_FMA=off -DLLAMA_F16C=on/' gen_darwin.sh
fi
if: darwin/x86-64
working-directory: llm/llama.cpp
- go generate ./...
- go build .
- mkdir -p {{prefix}}/bin