This repository was archived by the owner on Apr 7, 2026. It is now read-only.
fix: remove jugar-probar llm feature — unblocks CI#67
Open
Conversation
…61) Five-whys: CI fails because crates.io jugar-probar 1.0.4 has browser but not llm feature. LlmClient tests rewritten to raw reqwest — same coverage, no probar llm dependency. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…norepo (Refs #61) Five-whys: CI runners check out only batuta, not sibling repos (probar, trueno-rag, trueno). Path deps like path="../probar/..." cause cargo to error when the path doesn't exist. Cargo does NOT fall back to crates.io when a path is specified — it hard-errors. Removed path overrides from: - jugar-probar (dev-dep): removed path, removed llm feature, rewrote 5 tests - jugar-probar (optional runtime): removed path - trueno-rag: removed path - trueno-cuda-edge (dev-dep): removed path All deps now resolve from crates.io in CI. Local dev uses [patch] or cargo config for path overrides when needed. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removes all sibling path deps from Cargo.toml. However, CI still fails because
the self-hosted runners have a system-level cargo config that forces path
overrides. This is a CI infrastructure issue, not a code issue.
What this PR does
path = "../probar/..."from 2 jugar-probar entriespath = "../trueno-rag"from trueno-ragpath = "../trueno/..."from trueno-cuda-edgellmfeature dep)CI Blocker
Self-hosted runners at
/home/noah/data/actions-runner-*/resolve../probar/to
_work/batuta/probar/which doesn't exist. The Cargo.toml no longer haspath deps, but the runner environment may have a
~/.cargo/config.tomlorstale directory that overrides resolution. Needs runner-side fix.
🤖 Generated with Claude Code