-
Notifications
You must be signed in to change notification settings - Fork 3
/
Justfile
75 lines (57 loc) · 1.52 KB
/
Justfile
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
set positional-arguments
alias t := tests
alias l := lint
alias f := fmt
alias b := build
alias h := hack
# default recipe to display help information
default:
@just --list
# Runs everything needed for ci
ci: fmt lint tests
# Updates the git submodule source
source:
git submodule update --remote
# Generate file bindings for super-registry
bind:
@just --justfile ./crates/registry/Justfile bind
# Run all tests
tests: test test-features test-docs
# Runs `cargo hack check`
hack:
cargo hack check --feature-powerset --no-dev-deps
# Formats
fmt: fmt-fix fmt-check
# Lint for all available targets
lint: lint-source lint-docs
# Build for the native target
build *args='':
cargo build --all $@
# Fixes the formatting
fmt-fix:
cargo +nightly fmt --all
# Check the formatting
fmt-check:
cargo +nightly fmt --all -- --check
# Lints
lint-source: fmt-check
cargo +nightly clippy --all --all-targets -- -D warnings
# Reth bug was causing the following to fail
# Lints
# lint-source-features: fmt-check
# cargo +nightly clippy --all --all-features --all-targets -- -D warnings
# Lint the Rust documentation
lint-docs:
RUSTDOCFLAGS="-D warnings" cargo doc --all --no-deps --document-private-items
# Test without features
test *args='':
cargo nextest run --all $@
# Test for the native target with all features
test-features *args='':
cargo nextest run --all $@
# Test the Rust documentation
test-docs:
cargo test --doc --all --locked
# Publish the superchain crate
release:
cargo release publish --execute --no-confirm