-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
77 lines (55 loc) · 1.37 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
73
74
75
76
77
CARGO ?= cargo
RUSTUP ?= rustup
help: Makefile
@echo
@echo " Choose a command run in Seal:"
@echo
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo
## config: Install dependencies.
.PHONY: config
config:
$(RUSTUP) component add rustfmt
## build: Build binary
.PHONY: build
build:
@echo "\n>> ============= Cargo Build ============= <<"
rm -rf target
$(CARGO) build -j 1 --verbose --all
## release: Build releases
.PHONY: release
release:
@echo "\n>> ============= Cargo Release ============= <<"
rm -rf target
$(CARGO) build -j 1 --release --verbose
## test: Run test cases
.PHONY: test
test:
@echo "\n>> ============= Cargo Test ============= <<"
$(CARGO) test --verbose --all
## fmt: Format code
.PHONY: fmt
fmt:
@echo "\n>> ============= Cargo Format ============= <<"
$(CARGO) fmt
## fmt_check: Check format
.PHONY: fmt_check
fmt_check:
@echo "\n>> ============= Cargo Format Check ============= <<"
$(CARGO) fmt -- --check
## run: Run project
.PHONY: run
run:
@echo "\n>> ============= Cargo Run ============= <<"
$(CARGO) run -j 1
## publish: Publish project
.PHONY: publish
publish:
@echo "\n>> ============= Cargo Publish ============= <<"
$(CARGO) login ${CARGO_TOKEN}
$(CARGO) publish
## ci: Run all CI tests.
.PHONY: ci
ci: build test fmt_check
@echo "\n>> ============= All quality checks passed ============= <<"
.PHONY: help