-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathMakefile
More file actions
86 lines (57 loc) · 1.75 KB
/
Makefile
File metadata and controls
86 lines (57 loc) · 1.75 KB
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
all: ci-all
# Main CI targets - fmt and clippy first, then tests
ci: fmt clippy test
ci-all: fmt clippy test-all
# Formatting targets
fmt: s3-fmt region-fmt creds-fmt
# Clippy targets for all features
clippy: s3-clippy region-clippy creds-clippy
# Test targets (run after fmt and clippy)
test: s3-test region-test creds-test
test-all: s3-test-all region-test creds-test
# Test targets for individual crates
s3-test:
cd s3; make test-not-ignored
s3-test-all:
cd s3; make test-all
region-test:
cd aws-region; cargo test
creds-test:
cd aws-creds; cargo test
s3-fmt:
cd s3; cargo fmt --all
region-fmt:
cd aws-region; cargo fmt --all
creds-fmt:
cd aws-creds; cargo fmt --all
s3-clippy:
cd s3; make clippy
region-clippy:
cd aws-region; cargo clippy --all-features
creds-clippy:
cd aws-creds; cargo clippy --all-features
example-async-std:
cargo run --example async-std --no-default-features --features async-std-native-tls
example-gcs-tokio:
cargo run --example google-cloud
example-minio:
cargo run --example minio
example-r2:
cargo run --example r2
example-sync:
cargo run --example sync --no-default-features --features sync-native-tls
example-tokio:
cargo run --example tokio
example-clippy-async-std:
cargo clippy --example async-std --no-default-features --features async-std-native-tls
example-clippy-gcs-tokio:
cargo clippy --example google-cloud
example-clippy-minio:
cargo clippy --example minio
example-clippy-r2:
cargo clippy --example r2
example-clippy-sync:
cargo clippy --example sync --no-default-features --features sync-native-tls
example-clippy-tokio:
cargo clippy --example tokio
examples-clippy: example-clippy-async-std example-clippy-gcs-tokio example-clippy-minio example-clippy-r2 example-clippy-sync example-clippy-tokio