Add Linux Vulkan support for local inference (#9038)

Signed-off-by: jh-block <jhugo@block.xyz>
This commit is contained in:
jh-block
2026-05-07 09:12:18 +02:00
committed by GitHub
parent d7df3fb431
commit f325a9d8e3
15 changed files with 104 additions and 27 deletions
+2 -1
View File
@@ -394,6 +394,7 @@ release-notes old:
### s = file separator based on OS
s := if os() == "windows" { "\\" } else { "/" }
linux_vulkan_features := if os() == "linux" { "--features vulkan" } else { "" }
### testing/debugging
os:
@@ -486,6 +487,6 @@ record-mcp-tests: build-test-tools
git add crates/goose/tests/mcp_replays/
bundle-goose2:
cargo build --release --package goose-cli --bin goose
cargo build --release --package goose-cli --bin goose {{linux_vulkan_features}}
cp target/release/goose target/release/goose-$(rustc --print host-tuple)
@just goose2::bundle