forked from paperclip-rs/paperclip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (35 loc) · 1.28 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
all: check build test
clean:
rm -rf Cargo.lock
rm -rf target
rm -rf tests/test_k8s
git checkout tests/test_k8s
rm -rf tests/test_pet
prepare:
rustup override set stable
rustup component add rustfmt
rustup component add clippy
rustup toolchain install nightly --allow-downgrade -c rustfmt clippy
check:
cargo +nightly fmt --all
cargo clippy --all --features "actix4" -- -D clippy::all
check_nightly:
cargo +nightly fmt --all
cargo +nightly clippy --all --features "actix4" -- -D clippy::all
doc:
cargo doc --all --all-features --no-deps
build:
cargo build
cargo build --features actix4
cargo build --features cli
test:
cargo test --all --features "actix4 cli chrono uuid swagger-ui rapidoc actix4-validator"
# We test this one separately as it affects the generated spec, which'd fail the other tests
cargo test test_module_path_in_definition_name --features "actix4 cli chrono uuid swagger-ui rapidoc path-in-definition actix4-validator"
# Compile the code generated through tests.
cd tests/test_pet && cargo check
cd tests/test_pet/cli && CARGO_TARGET_DIR=../target cargo check
cd tests/test_k8s && cargo check
cd tests/test_k8s/cli && CARGO_TARGET_DIR=../target cargo check
# Test that the CLI runs successfully.
# ./tests/test_k8s/target/debug/test-k8s-cli --help > /dev/null