git.delta.rocks / unique-network / refs/commits / ececb8dea44b

difftreelog

build mark bench jobs as PHONY

Yaroslav Bolyukin2021-08-30parent: #0778d10.patch.diff
in: master

1 file changed

modifiedMakefilediffbeforeafterboth
before · Makefile
1_bench:2	cargo run --release --features runtime-benchmarks -- \3	benchmark --pallet pallet-$(PALLET) \4	--wasm-execution compiled --extrinsic '*' \5	--template .maintain/frame-weight-template.hbs --steps=50 --repeat=20 \6	--output=./pallets/$(PALLET)/src/weights.rs78bench-evm-migration:9	make _bench PALLET=evm-migration1011bench: bench-evm-migration
after · Makefile
1.PHONY: _bench2_bench:3	cargo run --release --features runtime-benchmarks -- \4	benchmark --pallet pallet-$(PALLET) \5	--wasm-execution compiled --extrinsic '*' \6	--template .maintain/frame-weight-template.hbs --steps=50 --repeat=20 \7	--output=./pallets/$(PALLET)/src/weights.rs89.PHONY: bench-evm-migration10bench-evm-migration:11	make _bench PALLET=evm-migration1213.PHONY: bench14bench: bench-evm-migration