ruvector/.github/workflows
ruvnet e079e5d7c4 sec(hailo): close cargo-deny CI coverage gap + bans regression (iter 202)
Audit found two related issues:

  1. Iter 177 added deny.toml to BOTH the cluster and hailo crates,
     but CI only audited the cluster's. The hailo crate's
     candle / tokenizers / safetensors chain (cpu-fallback feature)
     and hailort-sys FFI surface (hailo feature) were ungated.

  2. Both deny.toml files set `wildcards = "deny"`, which
     cargo-deny applies to path deps too. The cluster has path
     deps on ruvector-hailo, ruvector-mmwave, hailort-sys — so the
     `bans` check would fail on `cargo deny check` if anyone ran
     it. The CI step ran but apparently never gated; running it
     locally now surfaces:
        error[wildcard]: found 1 wildcard dependency for crate
                         'ruvector-hailo' ...
        bans FAILED

Fix:
  - Add `allow-wildcard-paths = true` to both deny.toml [bans]
    sections. cargo-deny only honors this on non-publishable
    crates, so also mark both crates `publish = false`. Both
    are internal-only (path deps to hailort-sys make them
    unpublishable to crates.io anyway), so the publish flip is
    correct hygiene independent of cargo-deny.
  - Add a second `cargo deny` step in the hailo-backend-audit
    workflow that runs in `crates/ruvector-hailo` with
    `--all-features` so the cpu-fallback + hailo feature surfaces
    are audited.
  - Add three new test/clippy steps for the hailo crate so iter-198's
    hef_verify cases (and iter-186 host_embeddings, iter-191
    hef_pipeline patches) are explicitly gated:
       cargo test                        (default features)
       cargo test --features cpu-fallback (hef_verify + tokenizer)
       cargo clippy --all-targets -D warnings

Validated locally:
  Both crates: cargo deny check → advisories ok, bans ok,
                                  licenses ok, sources ok
  hailo lib  : 19 tests pass (default)
              26 tests pass (--features cpu-fallback)
  hailo clippy: clean
  cluster lib: 108 tests still pass

No production code changed; pure CI + crate-config hygiene. Pi
worker untouched.

Co-Authored-By: claude-flow <ruv@ruv.net>
2026-05-03 20:15:57 -04:00
..
agentic-synth-ci.yml feat(agentic-synth): Update RuVector adapter to use native NAPI-RS bindings (#34) 2025-12-01 13:17:26 -05:00
benchmarks.yml ci: fix benchmarks by installing PostgreSQL 17 and pgrx 2025-12-30 15:36:30 +00:00
build-attention.yml fix: use git add -f in CI workflows to commit .node binaries past .gitignore 2026-02-25 14:35:14 +00:00
build-diskann.yml feat(diskann): Vamana ANN + PQ + NAPI bindings — 14 tests, 1.0 recall, 90µs search (#334) 2026-04-06 17:55:06 -04:00
build-gnn.yml fix: use git add -f in CI workflows to commit .node binaries past .gitignore 2026-02-25 14:35:14 +00:00
build-graph-node.yml feat(postgres): Add HNSW index and embedding functions support (#62) 2025-12-09 11:14:52 -05:00
build-graph-transformer.yml fix: use git add -f in CI workflows to commit .node binaries past .gitignore 2026-02-25 14:35:14 +00:00
build-native.yml fix: use git add -f in CI workflows to commit .node binaries past .gitignore 2026-02-25 14:35:14 +00:00
build-router.yml fix(ci): read version from package.json instead of hardcoded value 2026-01-24 12:35:23 -05:00
build-rvf-node.yml fix(ci): resolve all build-rvf-node failures 2026-02-16 22:39:04 +00:00
build-tiny-dancer.yml feat(postgres): Add HNSW index and embedding functions support (#62) 2025-12-09 11:14:52 -05:00
build-verified.yml feat: add formal verification layer with lean-agentic dependent types 2026-02-25 03:45:18 +00:00
ci.yml test(quarantine): #[ignore] 8 pre-existing hanging tests + bump core-and-rest headroom 2026-04-26 11:21:33 -04:00
clippy-fmt.yml chore(workspace): fix pre-existing test flakes + add CI -D warnings enforcement 2026-04-25 20:17:47 -04:00
copilot-setup-steps.yml fix: Add Copilot setup workflow with git clone cleanup step 2026-01-29 11:05:28 -05:00
docker-publish.yml fix(docker): include gated-transformer dependency in builds 2025-12-26 23:39:06 +00:00
edge-net-models.yml chore: Update dependency versions for crates.io publishing 2026-01-04 19:44:24 +00:00
hailo-backend-audit.yml sec(hailo): close cargo-deny CI coverage gap + bans regression (iter 202) 2026-05-03 20:15:57 -04:00
hooks-ci.yml fix(ci): use --memory-type flag for hooks remember command 2025-12-29 17:58:38 +00:00
mirror-rulake.yml ci: mirror crates/ruvector-rulake/ + ADRs to ruvnet/RuLake on push 2026-04-24 10:29:09 -04:00
postgres-extension-ci.yml fix: add missing pg17 feature flag in pgrx test commands and fix rustdoc link errors 2026-02-21 22:44:28 +00:00
publish-all.yml fix: Update ruvector-math-wasm to use @ruvector/math-wasm scoped package 2026-01-11 17:21:16 +00:00
RELEASE-FLOW.md feat: Implement GNN forgetting mitigation (#17) 2025-11-26 23:17:07 +00:00
release-rvf-cli.yml feat(rvf-cli): add cross-platform release workflow and update README 2026-02-16 23:19:39 +00:00
RELEASE.md feat: Implement GNN forgetting mitigation (#17) 2025-11-26 23:17:07 +00:00
release.yml fix: Remove automatic npm publish from CI/CD workflows 2025-11-30 21:23:39 +00:00
ruvector-postgres-ci.yml fix: update pgrx to 0.12.9 in both CI workflows and fix formatting 2026-02-21 22:34:37 +00:00
ruvllm-benchmarks.yml feat(training): RuvLTRA v2.4 Ecosystem Edition - 100% routing accuracy (#123) 2026-01-20 20:08:30 -05:00
ruvllm-build.yml feat: SONA Neural Architecture, RuvLLM, npm packages v0.1.31, and path traversal fix (#51) 2025-12-03 18:40:25 -05:00
ruvllm-esp32-firmware.yml fix(ruvllm-esp32): USB-Serial/JTAG VFS + per-toolchain CI matrix; ADR-166 ops manual 2026-04-30 13:28:28 -04:00
ruvllm-native.yml feat: SONA Neural Architecture, RuvLLM, npm packages v0.1.31, and path traversal fix (#51) 2025-12-03 18:40:25 -05:00
ruvltra-tests.yml fix: CI clippy errors and Windows test failures 2026-03-16 23:21:01 -04:00
sona-napi.yml feat: SONA Neural Architecture, RuvLLM, npm packages v0.1.31, and path traversal fix (#51) 2025-12-03 18:40:25 -05:00
sync-rvf-examples.yml fix: ruvector-postgres v0.3.1 — audit bug fixes, 46 SQL functions, Docker publish (#227) 2026-03-03 12:53:10 -05:00
thermorust-ci.yml feat(thermorust): add thermodynamic neural-motif crate 2026-02-27 14:22:44 +00:00
ui-ci.yml feat(quality): ADR-144 monorepo quality analysis — Phase 1 critical fixes (#336) 2026-04-06 21:19:13 -04:00
validate-lockfile.yml fix: Resolve CI failures from platform-specific npm package conflicts 2025-11-27 15:38:11 +00:00
wasm-dedup-check.yml fix(rvf-wasm): fix Node.js CJS/ESM glue and add rvf-node CI 2026-02-16 21:33:14 +00:00