Skip to content

Commit 7c231ba

Browse files
Mike Kuykendallclaude
andcommitted
fix: Build release binaries without llama.cpp dependency
Use --no-default-features --features huggingface to avoid heavy llama.cpp cross-compilation that was causing failures. SafeTensors works with just the huggingface feature. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 0cd25fa commit 7c231ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
targets: ${{ matrix.target }}
5656

5757
- name: Build binary
58-
run: cargo build --release --target ${{ matrix.target }} --all-features
58+
run: cargo build --release --target ${{ matrix.target }} --no-default-features --features huggingface
5959

6060
- name: Upload artifact
6161
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)