-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
88 lines (73 loc) · 1.92 KB
/
Makefile
File metadata and controls
88 lines (73 loc) · 1.92 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.PHONY: setup clean fmt-check fmt clippy clippy-release check check-release build build-release test test-release install lint skill-fmt new-skill ci doc help
# Setup development environment
setup:
rustup component add rustfmt clippy
cargo fetch
lefthook install
# Cleanup compilation outputs
clean:
cargo clean
# Check the code format
fmt-check:
cargo fmt --all -- --check
# Format the code
fmt:
cargo fmt --all
# Run rust clippy with debug profile
clippy:
cargo clippy --all --all-targets -- -D warnings
# Run rust clippy with release profile
clippy-release:
cargo clippy --release --all --all-targets -- -D warnings
# Check code with debug profile
check:
cargo check
# Check code with release profile
check-release:
cargo check --release
# Build all binaries with debug profile
build:
cargo build
# Build all binaries with release profile
build-release:
cargo build --release
# Run all unit tests with debug profile
test:
cargo test --all
# Run all unit tests with release profile
test-release:
cargo test --release --all
# Install the binary locally
install:
cargo install --path .
# Run skilo lint on skills
lint:
cargo run -- lint .
# Format skills
skill-fmt:
cargo run -- fmt .
# Create a new test skill (usage: make new-skill NAME=my-skill LANG=python)
new-skill:
cargo run -- new $(NAME) --lang $(or $(LANG),python)
# Run all CI checks (fmt, clippy, test, build, lint, skill-fmt)
ci: fmt clippy test build lint skill-fmt
# Generate documentation
doc:
cargo doc --no-deps --open
# Show help
help:
@echo ''
@echo 'Usage:'
@echo ' make [target]'
@echo ''
@echo 'Targets:'
@awk '/^[a-zA-Z\-\_0-9]+:/ { \
helpMessage = match(lastLine, /^# (.*)/); \
if (helpMessage) { \
helpCommand = substr($$1, 0, index($$1, ":")); \
helpMessage = substr(lastLine, RSTART + 2, RLENGTH); \
printf "\033[36m%-30s\033[0m %s\n", helpCommand,helpMessage; \
} \
} \
{ lastLine = $$0 }' $(MAKEFILE_LIST)
.DEFAULT_GOAL := help