-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
78 lines (60 loc) · 1.41 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
78
.ONESHELL:
SHELL = /bin/bash
.SHELLFLAGS += -e
#
# Top level targets
#
all: format lint build test
release: format lint build-release test-release
#
# Install dependencies
#
install-deps:
sudo apt install -y protobuf-compiler libprotobuf-dev
#
# Format tasks
#
format:
cargo fmt -- --emit files
#
# Lint tasks
#
pre-commit:
pre-commit run --all-files
lint:
cargo clippy --all-targets --all-features
lint-fix:
cargo clippy --all-targets --all-features --fix --allow-dirty
#
# Debug build targets
#
build:
cargo build --all
test:
cargo test --all
clean:
cargo clean
#
# Release build targets
#
build-release:
cargo build --release --all
test-release:
cargo test --release --all
clean-release:
cargo clean --release
ci-all: | ci-format ci-build ci-doc ci-lint ci-test
ci-format:
cargo fmt --check --all
ci-build:
RUSTFLAGS="--deny warnings" cargo build --workspace --all-features
RUSTFLAGS="--deny warnings" cargo build --release --workspace --all-features
ci-doc:
RUSTDOCFLAGS="--deny warnings" cargo doc --workspace --all-features
RUSTDOCFLAGS="--deny warnings" cargo doc --release --workspace --all-features
ci-lint:
cargo clippy --workspace --all-features --no-deps -- --deny "clippy::all"
cargo clippy --release --workspace --all-features --no-deps -- --deny "clippy::all"
ci-test:
cargo test --workspace --all-features
cargo test --release --workspace --all-features