-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
82 lines (81 loc) · 2.04 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
79
80
81
82
fmt:
cargo fmt --check
clippy:
cargo clippy --release
build:
cargo build --release
test-single: build
./runtest --clients 1 \
--skipunit unit/dump \
--skipunit unit/auth \
--skipunit unit/protocol \
--skipunit unit/scan \
--skipunit unit/info \
--skipunit unit/type/zset \
--skipunit unit/bitops \
--skipunit unit/type/stream \
--skipunit unit/type/stream-cgroups \
--skipunit unit/sort \
--skipunit unit/aofrw \
--skipunit unit/acl \
--skipunit unit/latency-monitor \
--skipunit unit/slowlog \
--skipunit unit/scripting \
--skipunit unit/introspection \
--skipunit unit/introspection-2 \
--skipunit unit/bitfield \
--skipunit unit/geo \
--skipunit unit/pause \
--skipunit unit/hyperloglog \
--skipunit unit/lazyfree \
--skipunit unit/tracking \
--skipunit unit/querybuf \
--ignore-encoding \
--tags -needs:repl \
--tags -leaks \
--tags -needs:debug \
--tags -needs:save \
--tags -external:skip \
--tags -needs:save \
--tags -consistency \
--tags -cli \
--tags -needs:config-maxmemory
unit-test:
cargo test --release
test: build
./runtest --clients 5 \
--skipunit unit/dump \
--skipunit unit/auth \
--skipunit unit/protocol \
--skipunit unit/scan \
--skipunit unit/info \
--skipunit unit/type/zset \
--skipunit unit/bitops \
--skipunit unit/type/stream \
--skipunit unit/type/stream-cgroups \
--skipunit unit/sort \
--skipunit unit/aofrw \
--skipunit unit/acl \
--skipunit unit/latency-monitor \
--skipunit unit/slowlog \
--skipunit unit/scripting \
--skipunit unit/introspection \
--skipunit unit/introspection-2 \
--skipunit unit/bitfield \
--skipunit unit/geo \
--skipunit unit/pause \
--skipunit unit/hyperloglog \
--skipunit unit/lazyfree \
--skipunit unit/tracking \
--skipunit unit/querybuf \
--ignore-encoding \
--tags -needs:repl \
--tags -leaks \
--tags -needs:debug \
--tags -needs:save \
--tags -external:skip \
--tags -needs:save \
--tags -consistency \
--tags -cli \
--tags -needs:config-maxmemory
ci: fmt clippy build unit-test test