forked from risingwavelabs/risingwave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
70 lines (51 loc) · 1.49 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
SHELL := /bin/bash
.PHONY: all rust
all: rust
rust:
echo "This command is deprecated. Use ./risedev check instead."
exit 1
rust_check_all:
echo "This command is deprecated. Use ./risedev check instead."
exit 1
rust_fmt:
echo "This command is deprecated. Use ./risedev check instead."
exit 1
rust_fmt_check:
echo "This command is deprecated. Use ./risedev check instead."
exit 1
rust_clippy_check_locked:
echo "This command is deprecated. Use ./risedev check instead."
exit 1
rust_clippy_check:
echo "This command is deprecated. Use ./risedev check instead."
exit 1
rust_cargo_sort_check:
echo "This command is deprecated. Use ./risedev check instead."
exit 1
rust_test:
echo "This command is deprecated. Use ./risedev test instead."
exit 1
rust_test_no_run:
echo "This command is deprecated. Use ./risedev test instead."
exit 1
# Note: "--skip-clean" must be used along with "CARGO_TARGET_DIR=..."
# See also https://github.com/xd009642/tarpaulin/issues/777
rust_test_with_coverage:
echo "This command is deprecated. Use ./risedev test-cov instead."
exit 1
rust_build:
cd src && cargo build
rust_clean:
cd src && cargo clean
rust_clean_build:
cd src && cargo clean && cargo build
rust_doc:
echo "This command is deprecated. Use ./risedev docs instead."
exit 1
# state store bench
ss_bench_build:
cd src && cargo build --workspace --bin ss-bench
sqllogictest:
cargo install --git https://github.com/risinglightdb/sqllogictest-rs --features bin
docker:
cd docker && ./build.sh