-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (25 loc) · 733 Bytes
/
Makefile
File metadata and controls
38 lines (25 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
.PHONY: all build build-debug test test-unit test-stress test-integration lint lint-fmt lint-clippy bench clean install
all: build
build:
cargo build --workspace --release
build-debug:
cargo build --workspace
test: test-unit test-stress test-integration
test-unit:
cargo test --lib
test-stress:
cargo test --test "*stress*" --test "*boundary*" --test "*edge*" --test "*heavy*"
test-integration:
cargo test --test "*workflow*" --test "*cli*"
lint: lint-fmt lint-clippy
lint-fmt:
cargo fmt --all -- --check
lint-clippy:
cargo clippy --workspace --all-targets -- -D warnings
bench:
cargo bench
clean:
cargo clean
install:
cargo install --path crates/agentic-comm-cli
cargo install --path crates/agentic-comm-mcp