Skip to content

Commit 28017c3

Browse files
authored
Merge pull request #754 from terraphim/feat/fff-kg-boosted-file-search
feat: KG-boosted file search with ExternalScorer trait (#222)
2 parents 29782b6 + 07aad75 commit 28017c3

12 files changed

Lines changed: 1785 additions & 16 deletions

File tree

.github/workflows/ci-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
components: clippy
221221

222222
- name: Clippy Check
223-
run: cargo clippy --workspace --all-targets -- -D warnings
223+
run: cargo clippy --workspace --all-targets --features zlob -- -D warnings
224224
env:
225225
RUST_BACKTRACE: 1
226226

@@ -274,10 +274,10 @@ jobs:
274274
- name: Check compilation
275275
run: |
276276
# Quick compilation check without building all binaries
277-
cargo check --workspace
277+
cargo check --workspace --features zlob
278278
# Check key binaries compile
279279
cargo check --package terraphim_server
280-
cargo check --package terraphim_mcp_server
280+
cargo check --package terraphim_mcp_server --features zlob
281281
282282
# Frontend linting and type checking
283283
frontend-check:
@@ -384,8 +384,8 @@ jobs:
384384
385385
- name: Run unit tests
386386
run: |
387-
# Run unit tests (rocksdb feature disabled in CI)
388-
cargo test --workspace --lib --bins -- --test-threads=2
387+
# Run unit tests (rocksdb feature disabled in CI, zlob enabled for fff-search)
388+
cargo test --workspace --lib --bins --features zlob -- --test-threads=2
389389
390390
# WASM build verification
391391
wasm-build:

0 commit comments

Comments
 (0)