fix: ensure leann-core package is built on all platforms, not just Ubuntu

This fixes the issue where CI was installing leann-core from PyPI instead of
using locally built package with Python 3.9 compatibility fixes.
This commit is contained in:
Andy Lee
2025-08-11 01:28:12 -07:00
parent 6aa1a97a07
commit 068fb38bae

View File

@@ -137,11 +137,9 @@ jobs:
- name: Build packages - name: Build packages
run: | run: |
# Build core (platform independent) # Build core (platform independent)
if [[ "${{ matrix.os }}" == ubuntu-* ]]; then cd packages/leann-core
cd packages/leann-core uv build
uv build cd ../..
cd ../..
fi
# Build HNSW backend # Build HNSW backend
cd packages/leann-backend-hnsw cd packages/leann-backend-hnsw