Skip to content

Commit 4b607c2

Browse files
committed
fix(ci/android): skip separate llama, whisper, and miniaudio build on AAR package
1 parent 621fbcb commit 4b607c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ jobs:
244244
VULKAN_SDK: "C:/msys64/mingw64"
245245

246246
- name: unix build llama.cpp
247-
if: matrix.os != 'windows-2022' && matrix.name != 'apple-xcframework' && steps.cache-llama.outputs.cache-hit != 'true'
247+
if: matrix.os != 'windows-2022'&& matrix.name != 'android-aar' && matrix.name != 'apple-xcframework' && steps.cache-llama.outputs.cache-hit != 'true'
248248
run: ${{ contains(matrix.name, 'linux-musl') && matrix.arch == 'arm64' && 'docker exec alpine' || '' }} make build/llama.cpp.stamp ${{ matrix.make && matrix.make || ''}}
249249

250250
- name: windows build whisper.cpp
@@ -255,7 +255,7 @@ jobs:
255255
VULKAN_SDK: "C:/msys64/mingw64"
256256

257257
- name: unix build whisper.cpp
258-
if: matrix.os != 'windows-2022' && matrix.name != 'apple-xcframework' && steps.cache-whisper.outputs.cache-hit != 'true'
258+
if: matrix.os != 'windows-2022'&& matrix.name != 'android-aar' && matrix.name != 'apple-xcframework' && steps.cache-whisper.outputs.cache-hit != 'true'
259259
run: ${{ contains(matrix.name, 'linux-musl') && matrix.arch == 'arm64' && 'docker exec alpine' || '' }} make build/whisper.cpp.stamp ${{ matrix.make && matrix.make || ''}}
260260

261261
- name: windows build miniaudio
@@ -264,7 +264,7 @@ jobs:
264264
run: make build/miniaudio.stamp ${{ matrix.make && matrix.make || ''}}
265265

266266
- name: unix build miniaudio
267-
if: matrix.os != 'windows-2022' && matrix.name != 'apple-xcframework' && steps.cache-miniaudio.outputs.cache-hit != 'true'
267+
if: matrix.os != 'windows-2022'&& matrix.name != 'android-aar' && matrix.name != 'apple-xcframework' && steps.cache-miniaudio.outputs.cache-hit != 'true'
268268
run: ${{ contains(matrix.name, 'linux-musl') && matrix.arch == 'arm64' && 'docker exec alpine' || '' }} make build/miniaudio.stamp ${{ matrix.make && matrix.make || ''}}
269269

270270
- name: windows build sqlite-ai

0 commit comments

Comments
 (0)