|
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 |
5 | 6 |
|
6 | 7 | # use `cargo nextest run` if cargo-nextest is installed, fallback cargo test
|
7 | 8 | cargo_test = $(shell which cargo-nextest >/dev/null && echo "cargo nextest run" || echo "cargo test")
|
8 | 9 |
|
9 | 10 | .PHONY: test
|
10 |
| -test: |
| 11 | +test: ## Run unit tests |
11 | 12 | ${cargo_test} --workspace
|
12 | 13 |
|
13 | 14 | .PHONY: test-features
|
14 |
| -test-features: |
| 15 | +test-features: ## Run features tests |
15 | 16 | ${cargo_test} --workspace --features try-runtime,runtime-benchmarks,evm-tracing
|
16 | 17 |
|
17 | 18 | .PHONY: test-runtimes
|
18 |
| -test-runtimes: |
| 19 | +test-runtimes: ## Run integration tests |
19 | 20 | SKIP_WASM_BUILD= ${cargo_test} -p integration-tests --features=shibuya
|
20 | 21 | SKIP_WASM_BUILD= ${cargo_test} -p integration-tests --features=shiden
|
21 | 22 | SKIP_WASM_BUILD= ${cargo_test} -p integration-tests --features=astar
|
22 | 23 |
|
23 | 24 | .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