Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
- name: 构建
run: cmake -B build && cmake --build build
- name: 构建 CLI(cli/ 独立 Cargo 项目,走 dispatch 前端 C ABI)
run: cargo build --release --manifest-path cli/Cargo.toml
run: |
# CLI 用 #[link(name = "kvspace")] 链本仓刚构建的前端 → 把 build/ 交给链接器
RUSTFLAGS="-L native=$PWD/build" cargo build --release --manifest-path cli/Cargo.toml
- name: 打包 ABI 产物
run: |
set -euo pipefail
Expand Down
Loading