Skip to content

Commit 647941d

Browse files
committed
fix(ci): drop deleted llm-cli-wrapper from animus-bin-* cargo aliases
The `animus-bin-build`, `animus-bin-build-release`, and `animus-bin-check` aliases in `.cargo/config.toml` still listed `-p llm-cli-wrapper`, but that crate was deleted in 88316ff ("refactor(llm-cli-wrapper): delete dead CliInterface + binary + tester + validator"). The v0.4.13 Release Binaries workflow failed on all 4 targets with: error: package ID specification 'llm-cli-wrapper' did not match any packages This commit closes the gap so the tag-driven release succeeds.
1 parent 7e43c43 commit 647941d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.cargo/config.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ wt-build = "build --manifest-path"
3636
wt-test = "test --manifest-path"
3737

3838
# Runtime binary set used by animus in local dev and release packaging
39-
animus-bin-build = "build -p orchestrator-cli -p agent-runner -p llm-cli-wrapper -p oai-runner -p workflow-runner-v2"
40-
animus-bin-build-release = "build --release -p orchestrator-cli -p agent-runner -p llm-cli-wrapper -p oai-runner -p workflow-runner-v2"
41-
animus-bin-check = "check -p orchestrator-cli -p agent-runner -p llm-cli-wrapper -p oai-runner -p workflow-runner-v2"
39+
animus-bin-build = "build -p orchestrator-cli -p agent-runner -p oai-runner -p workflow-runner-v2"
40+
animus-bin-build-release = "build --release -p orchestrator-cli -p agent-runner -p oai-runner -p workflow-runner-v2"
41+
animus-bin-check = "check -p orchestrator-cli -p agent-runner -p oai-runner -p workflow-runner-v2"
4242

4343
# Linting
4444
animus-lint = "clippy --workspace --all-targets"

0 commit comments

Comments
 (0)