-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
62 lines (44 loc) · 1.73 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
TEST_LOG_PARAMS=RUST_LOG_SPAN_EVENTS=new,close RUST_LOG=debug
###############################################################################
# Lint
###############################################################################
.PHONY: lint
lint:
cargo fmt --check
cargo test -p kamu-repo-tools
cargo deny check --hide-inclusion-graph
cargo clippy --workspace --all-targets -- -D warnings
###############################################################################
# Lint (with fixes)
###############################################################################
.PHONY: lint-fix
lint-fix:
cargo clippy --workspace --all-targets --fix --allow-dirty --allow-staged --broken-code
cargo fmt --all
###############################################################################
# Test
###############################################################################
.PHONY: test
test:
$(TEST_LOG_PARAMS) cargo nextest run
.PHONY: test-no-oracle
test-no-oracle:
$(TEST_LOG_PARAMS) cargo nextest run -E 'not test(::oracle::)'
###############################################################################
# Generated resources
###############################################################################
.PHONY: resources
resources:
$(TEST_LOG_PARAMS) cargo nextest run -E 'test(::resourcegen::)'
###############################################################################
# Release
###############################################################################
.PHONY: release-patch
release-patch:
cargo run -p kamu-repo-tools --bin release -- --patch
.PHONY: release-minor
release-minor:
cargo run -p kamu-repo-tools --bin release -- --minor
.PHONY: release-major
release-major:
cargo run -p kamu-repo-tools --bin release -- --major