File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,9 @@ jobs:
143
143
cd build
144
144
ctest --verbose
145
145
146
+ # TODO: build with LLAMA_NO_METAL because test-backend-ops fail on "Apple Paravirtual device" and I don't know
147
+ # how to debug it.
148
+ # ref: https://github.com/ggerganov/llama.cpp/actions/runs/7131777249/job/19420981052#step:5:1124
146
149
macOS-latest-make :
147
150
runs-on : macos-latest
148
151
@@ -160,13 +163,13 @@ jobs:
160
163
- name : Build
161
164
id : make_build
162
165
run : |
163
- make -j $(sysctl -n hw.logicalcpu)
166
+ LLAMA_NO_METAL=1 make -j $(sysctl -n hw.logicalcpu)
164
167
165
168
- name : Test
166
169
id : make_test
167
170
run : |
168
- make tests -j $(sysctl -n hw.logicalcpu)
169
- make test -j $(sysctl -n hw.logicalcpu)
171
+ LLAMA_NO_METAL=1 make tests -j $(sysctl -n hw.logicalcpu)
172
+ LLAMA_NO_METAL=1 make test -j $(sysctl -n hw.logicalcpu)
170
173
171
174
macOS-latest-cmake :
172
175
runs-on : macos-latest
You can’t perform that action at this time.
0 commit comments