-
Notifications
You must be signed in to change notification settings - Fork 107
/
Makefile
93 lines (71 loc) · 1.8 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
83
84
85
86
87
88
89
90
91
92
93
COMPOSE := docker compose -f test/cluster/docker-compose.yml
.PHONY: all
all: test
.PHONY: ci
ci: fmt-check check check-without-features check-all-features clippy clippy-all-features test build
.PHONY: dockerized-ci
dockerized-ci: fmt-check check check-without-features check-all-features clippy clippy-all-features dockerized-test build
.PHONY: fmt
fmt:
cargo fmt --all
.PHONY: fmt-check
fmt-check:
cargo fmt --all -- --check
.PHONY: check
check:
cargo check --all-targets
.PHONY: check-without-features
check-without-features:
cargo check --manifest-path "scylla/Cargo.toml" --features "" --all-targets
.PHONY: check-all-features
check-all-features:
cargo check --all-targets --all-features
.PHONY: clippy
clippy:
RUSTFLAGS=-Dwarnings cargo clippy --all-targets
.PHONY: clippy-all-features
clippy-all-features:
RUSTFLAGS=-Dwarnings cargo clippy --all-targets --all-features
.PHONY: test
test: up
SCYLLA_URI=172.42.0.2:9042 \
SCYLLA_URI2=172.42.0.3:9042 \
SCYLLA_URI3=172.42.0.4:9042 \
cargo test
.PHONY: dockerized-test
dockerized-test: up
test/dockerized/run.sh
.PHONY: build
build:
cargo build --examples --benches
.PHONY: docs
docs:
mdbook build docs
.PHONY: semver-rev
semver-rev:
./scripts/semver-checks.sh $(if $(rev),--baseline-rev $(rev),--baseline-rev main)
.PHONY: semver-version
semver-version:
./scripts/semver-checks.sh $(if $(version),--baseline-version $(version),)
.PHONY: up
up:
$(COMPOSE) up -d --wait
@echo
@echo "ScyllaDB cluster is running in the background. Use 'make down' to stop it."
@echo
.PHONY: down
down:
$(COMPOSE) down --remove-orphans
.PHONY: logs
logs:
$(COMPOSE) logs -f
.PHONY: cqlsh
cqlsh:
$(COMPOSE) exec scylla1 cqlsh -u cassandra -p cassandra
.PHONY: shell
shell:
$(COMPOSE) exec scylla1 bash
.PHONY: clean
clean: down
cargo clean
rm -rf docs/book