mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 07:57:57 +00:00
7bdf776ea4
Signed-off-by: xermicus <cyrill@parity.io>
24 lines
537 B
Makefile
24 lines
537 B
Makefile
.PHONY: install test test-solidity test-cli test-integration clean
|
|
|
|
install:
|
|
cargo install --path crates/solidity && \
|
|
npm install && npm fund
|
|
|
|
test: install test-integration test-cli test-solidity
|
|
|
|
test-integration: install
|
|
cargo test --package revive-integration
|
|
|
|
test-solidity: install
|
|
cargo test --package revive-solidity
|
|
|
|
test-cli: install
|
|
npm run test:cli
|
|
|
|
clean:
|
|
cargo clean ; \
|
|
rm -rf node_modules ; \
|
|
rm -rf crates/solidity/src/tests/cli-tests/artifacts ; \
|
|
cargo uninstall revive-solidity ; \
|
|
rm -f package-lock.json
|