forked from redis-rs/redis-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
37 lines (29 loc) · 1.09 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
build:
@cargo build
test:
@echo "===================================================================="
@echo "Testing Connection Type TCP"
@echo "===================================================================="
@REDISRS_SERVER_TYPE=tcp RUST_TEST_THREADS=1 cargo test
@echo "Testing Connection Type UNIX"
@echo "===================================================================="
@REDISRS_SERVER_TYPE=unix cargo test --test parser --test test_basic --test test_types
@echo "===================================================================="
@echo "Testing Connection Type UNIX SOCKETS"
@echo "===================================================================="
@REDISRS_SERVER_TYPE=unix cargo test
test-single: RUST_TEST_THREADS=1
test-single: test
bench:
@RUST_TEST_THREADS=1 cargo bench
docs: build
@cargo doc --no-deps
upload-docs: docs
@./upload-docs.sh
style-check:
@rustup component add rustfmt 2> /dev/null
cargo fmt --all -- --check
lint:
@rustup component add clippy 2> /dev/null
cargo clippy --all-features
.PHONY: build test bench docs upload-docs style-check lint