forked from foundry-rs/foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
72 lines (53 loc) · 1.88 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
# Heavily inspired by:
# - Lighthouse: https://github.com/sigp/lighthouse/blob/693886b94176faa4cb450f024696cb69cda2fe58/Makefile
# - Reth: https://github.com/paradigmxyz/reth/blob/1f642353ca083b374851ab355b5d80207b36445c/Makefile
.DEFAULT_GOAL := help
# Cargo profile for builds.
PROFILE ?= dev
# List of features to use when building. Can be overridden via the environment.
# No jemalloc on Windows
ifeq ($(OS),Windows_NT)
FEATURES ?= rustls aws-kms cli asm-keccak
else
FEATURES ?= jemalloc rustls aws-kms cli asm-keccak
endif
##@ Help
.PHONY: help
help: ## Display this help.
@awk 'BEGIN {FS = ":.*##"; printf "Usage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
##@ Build
.PHONY: build
build: ## Build the project.
cargo build --features "$(FEATURES)" --profile "$(PROFILE)"
##@ Other
.PHONY: clean
clean: ## Clean the project.
cargo clean
## Linting
fmt: ## Run all formatters.
cargo +nightly fmt
./.github/scripts/format.sh --check
lint-foundry:
RUSTFLAGS="-Dwarnings" cargo clippy --workspace --all-targets --all-features
lint-codespell: ensure-codespell
codespell --skip "*.json"
ensure-codespell:
@if ! command -v codespell &> /dev/null; then \
echo "codespell not found. Please install it by running the command `pip install codespell` or refer to the following link for more information: https://github.com/codespell-project/codespell" \
exit 1; \
fi
lint: ## Run all linters.
make fmt && \
make lint-foundry && \
make lint-codespell
## Testing
test-foundry:
cargo nextest run -E 'kind(test) & !test(/issue|forge_std|ext_integration/)'
test-doc:
cargo test --doc --workspace
test: ## Run all tests.
make test-foundry && \
make test-doc
pr: ## Run all tests and linters in preparation for a PR.
make lint && \
make test