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 04a5ac2 commit 9ed2737Copy full SHA for 9ed2737
.github/workflows/build.yml
@@ -101,7 +101,9 @@ jobs:
101
sysctl -a
102
mkdir build
103
cd build
104
- cmake -DLLAMA_FATAL_WARNINGS=ON -DLLAMA_METAL_EMBED_LIBRARY=ON -DLLAMA_CURL=ON ..
+ # Metal is disabled due to intermittent failures with Github runners not having a GPU:
105
+ # https://github.com/ggerganov/llama.cpp/actions/runs/8635935781/job/23674807267#step:5:2313
106
+ cmake -DLLAMA_FATAL_WARNINGS=ON -DLLAMA_METAL=OFF -DLLAMA_CURL=ON ..
107
cmake --build . --config Release -j $(sysctl -n hw.logicalcpu)
108
109
- name: Test
0 commit comments