We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cf48de commit e145500Copy full SHA for e145500
1 file changed
.github/workflows/main.yml
@@ -399,9 +399,13 @@ jobs:
399
VULKAN_SDK: "C:/msys64/mingw64"
400
401
- name: unix build sqlite-ai
402
- if: matrix.os != 'windows-2022'
+ if: matrix.os != 'windows-2022' && matrix.name != 'android-aar' && matrix.name != 'apple-xcframework'
403
run: ${{ contains(matrix.name, 'linux-musl') && matrix.arch == 'arm64' && 'docker exec alpine' || '' }} make extension ${{ matrix.make && matrix.make || ''}}
404
405
+ - name: build aar/xcframework
406
+ if: matrix.name == 'android-aar' || matrix.name == 'apple-xcframework'
407
+ run: make ${{ matrix.make && matrix.make || ''}}
408
+
409
- name: create keychain for codesign
410
if: matrix.os == 'macos-15'
411
run: |
0 commit comments