This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
67 lines (49 loc) · 1.46 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
ERBOSE := $(if ${CI},--verbose,)
ifneq ("$(wildcard /usr/lib/librocksdb.so)","")
SYS_LIB_DIR := /usr/lib
else ifneq ("$(wildcard /usr/lib64/librocksdb.so)","")
SYS_LIB_DIR := /usr/lib64
else
USE_SYS_ROCKSDB :=
endif
SYS_ROCKSDB := $(if ${USE_SYS_ROCKSDB},ROCKSDB_LIB_DIR=${SYS_LIB_DIR},)
CARGO := env ${SYS_ROCKSDB} cargo
schema:
make -C core/extensions/src/rce_validator schema
test:
${CARGO} test ${VERBOSE} --all --all-features -- --nocapture --test-threads=1
doc:
cargo doc --all --no-deps
doc-deps:
cargo doc --all
check:
${CARGO} check ${VERBOSE} --all
build:
${CARGO} build ${VERBOSE} --release
prod:
${CARGO} build ${VERBOSE} --release
prod-test:
${CARGO} test ${VERBOSE} --all -- --nocapture
fmt:
cargo fmt ${VERBOSE} --all -- --check
clippy:
${CARGO} clippy ${VERBOSE} --all --all-targets --all-features -- \
-D warnings -D clippy::clone_on_ref_ptr -D clippy::enum_glob_use
ci: fmt clippy test
git diff --exit-code Cargo.lock
info:
date
pwd
env
# For counting lines of code
stats:
@cargo count --version || cargo +nightly install --git https://github.com/kbknapp/cargo-count
@cargo count --separator , --unsafe-statistics
# Use cargo-audit to audit Cargo.lock for crates with security vulnerabilities
# expecting to see "Success No vulnerable packages found"
security-audit:
@cargo audit --version || cargo install cargo-audit
@cargo audit
.PHONY: build prod prod-test
.PHONY: fmt test clippy doc doc-deps check stats
.PHONY: ci info security-audit