Skip to content

Commit e145500

Browse files
committed
fix(ci): separate aar/xcframework builds from host extension step
1 parent 2cf48de commit e145500

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,9 +399,13 @@ jobs:
399399
VULKAN_SDK: "C:/msys64/mingw64"
400400

401401
- name: unix build sqlite-ai
402-
if: matrix.os != 'windows-2022'
402+
if: matrix.os != 'windows-2022' && matrix.name != 'android-aar' && matrix.name != 'apple-xcframework'
403403
run: ${{ contains(matrix.name, 'linux-musl') && matrix.arch == 'arm64' && 'docker exec alpine' || '' }} make extension ${{ matrix.make && matrix.make || ''}}
404404

405+
- name: build aar/xcframework
406+
if: matrix.name == 'android-aar' || matrix.name == 'apple-xcframework'
407+
run: make ${{ matrix.make && matrix.make || ''}}
408+
405409
- name: create keychain for codesign
406410
if: matrix.os == 'macos-15'
407411
run: |

0 commit comments

Comments
 (0)