Skip to content

Commit ffa99e9

Browse files
committed
improve makefile
1 parent f63d30e commit ffa99e9

File tree

1 file changed

+21
-8
lines changed

1 file changed

+21
-8
lines changed

Makefile

+21-8
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,37 @@
1-
.PHONY: runtime-upgrade-test
2-
runtime-upgrade-test:
3-
cargo build -p $(runtime)-runtime --release --locked
4-
cd tests/e2e && yarn --frozen-lockfile && yarn test:runtime-upgrade-$(runtime)
1+
.PHONY: help
2+
help: ## Display this help
3+
@awk 'BEGIN {FS = ":.*##"; printf "\n Usage: \033[36mmake \x1b[33m[target]\033[0m\n" } /^[a-zA-Z_-]+:.*?##/ { printf " \x1b[33m%-20s\033[0m %s\n", $$1, $$2 }' $(MAKEFILE_LIST)
4+
5+
.DEFAULT_GOAL := help
56

67
# use `cargo nextest run` if cargo-nextest is installed, fallback cargo test
78
cargo_test = $(shell which cargo-nextest >/dev/null && echo "cargo nextest run" || echo "cargo test")
89

910
.PHONY: test
10-
test:
11+
test: ## Run unit tests
1112
${cargo_test} --workspace
1213

1314
.PHONY: test-features
14-
test-features:
15+
test-features: ## Run features tests
1516
${cargo_test} --workspace --features try-runtime,runtime-benchmarks,evm-tracing
1617

1718
.PHONY: test-runtimes
18-
test-runtimes:
19+
test-runtimes: ## Run integration tests
1920
SKIP_WASM_BUILD= ${cargo_test} -p integration-tests --features=shibuya
2021
SKIP_WASM_BUILD= ${cargo_test} -p integration-tests --features=shiden
2122
SKIP_WASM_BUILD= ${cargo_test} -p integration-tests --features=astar
2223

2324
.PHONY: test-all
24-
test-all: test test-runtimes test-features
25+
test-all: ## Run all tests
26+
$(MAKE) test
27+
$(MAKE) test-runtimes
28+
$(MAKE) test-features
29+
30+
.PHONY: runtime-upgrade-test
31+
runtime-upgrade-test: ## Runtime upgrade test. e.g. make runtime-upgrade-test runtime=astar
32+
cargo build -p $(runtime)-runtime --release --locked
33+
cd tests/e2e && yarn --frozen-lockfile && yarn test:runtime-upgrade-$(runtime)
34+
35+
.PHONY: build
36+
build: ## Build release profile
37+
cargo build --release --locked

0 commit comments

Comments
 (0)