-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (48 loc) · 1.24 KB
/
Makefile
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
cargo ?= cargo
rustup ?= rustup
help: Makefile
@echo
@echo " Choose a command run in Bobcat:"
@echo
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo
## config: Install dependencies.
config:
$(rustup) component add rustfmt
## doc: Generate docs.
doc:
$(cargo) doc
## build: Build binary
build:
@echo "\n>> ============= Cargo Build ============= <<"
rm -rf target
$(cargo) build --verbose --all
## release: Build releases
release:
@echo "\n>> ============= Cargo Release ============= <<"
rm -rf target
$(cargo) build --release --verbose
## publish: Publish release
publish:
@echo "\n>> ============= Cargo Publish ============= <<"
$(cargo) publish
## test: Run test cases
test:
@echo "\n>> ============= Cargo Test ============= <<"
$(cargo) test --verbose --all
## fmt: Format code
fmt:
@echo "\n>> ============= Cargo Format ============= <<"
$(cargo) fmt
## fmt_check: Check format
fmt_check:
@echo "\n>> ============= Cargo Format Check ============= <<"
$(cargo) fmt -- --check
## run: Run project
run:
@echo "\n>> ============= Cargo Run ============= <<"
$(cargo) run
## ci: Run all CI tests.
ci: build test fmt_check
@echo "\n>> ============= All quality checks passed ============= <<"
.PHONY: help