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
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ jobs:
mkdir -p bin
cp layout/target/release/libkvlanglayout.dylib bin/
cargo build --release --manifest-path runtime-rs/Cargo.toml
cargo build --release --manifest-path /tmp/kvspace/cli/Cargo.toml
# kvspace CLI 用 #[link(name = "kvspace")],前端装在 /usr/local/lib/kvspace
RUSTFLAGS="-L native=/usr/local/lib/kvspace" cargo build --release --manifest-path /tmp/kvspace/cli/Cargo.toml
cp layout/target/release/kvlanglayout bin/
cp runtime-rs/target/release/kvlang bin/
- name: 后端装载冒烟(frontend 的 dlopen 真能加载后端)
Expand Down
Loading