diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-04-12 11:15:05 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 11:15:05 +0300 |
commit | 9ed2737acc233716374860e6b2ea7399c4aae29e (patch) | |
tree | 1598a135e30fe2fc3b366016aaa21d3657f2897a | |
parent | 04a5ac211ef40936295980b7cdf0ba6e97093146 (diff) |
ci : disable Metal for macOS-latest-cmake-x64 (#6628)
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0527899a..63143bc9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -101,7 +101,9 @@ jobs: sysctl -a mkdir build cd build - 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: + # https://github.com/ggerganov/llama.cpp/actions/runs/8635935781/job/23674807267#step:5:2313 + cmake -DLLAMA_FATAL_WARNINGS=ON -DLLAMA_METAL=OFF -DLLAMA_CURL=ON .. cmake --build . --config Release -j $(sysctl -n hw.logicalcpu) - name: Test |