forked from bitgreen/bitgreen-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
76 lines (60 loc) · 2.02 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
73
74
75
.PHONY: init
init:
rustup update stable
rustup update nightly
rustup target add wasm32-unknown-unknown --toolchain nightly
git submodule update --init --recursive
.PHONY: release
release:
rustup install 1.51.0
rustup default 1.51.0
rustup toolchain install nightly-2021-05-09
rustup target add wasm32-unknown-unknown --toolchain nightly-2021-05-09
rm -rf target/
cargo build --manifest-path node/Cargo.toml --features with-ethereum-compatibility --release
.PHONY: build
build:
cargo build --manifest-path node/Cargo.toml --features runtime-benchmarks,with-ethereum-compatibility --release
.PHONY: wasm
wasm:
cargo build -p bitg-runtime --features with-ethereum-compatibility --release
.PHONY: genesis
genesis:
make release
./target/release/bitg-node build-spec --chain testnet > assets/chain_spec_testnet.json
./target/release/bitg-node build-spec --chain mainnet > assets/chain_spec_mainnet.json
.PHONY: check
check:
SKIP_WASM_BUILD=1 cargo check
.PHONY: clippy
clippy:
SKIP_WASM_BUILD=1 cargo clippy -- -D warnings -A clippy::from-over-into -A clippy::type-complexity -A clippy::unnecessary-cast -A clippy::identity-op
.PHONY: watch
watch:
SKIP_WASM_BUILD=1 cargo watch -c -x build
.PHONY: test
test:
SKIP_WASM_BUILD=1 cargo test --all
.PHONY: debug
debug:
cargo build && RUST_LOG=debug RUST_BACKTRACE=1 rust-gdb --args target/debug/bitg-node --dev --tmp -lruntime=debug
.PHONY: run
run:
RUST_BACKTRACE=1 cargo run --manifest-path node/Cargo.toml --features with-ethereum-compatibility -- --dev --tmp
.PHONY: log
log:
RUST_BACKTRACE=1 RUST_LOG=debug cargo run --manifest-path node/Cargo.toml --features with-ethereum-compatibility -- --dev --tmp
.PHONY: noeth
noeth:
RUST_BACKTRACE=1 cargo run -- --dev --tmp
.PHONY: bench
bench:
SKIP_WASM_BUILD=1 cargo test --manifest-path node/Cargo.toml --features runtime-benchmarks,with-ethereum-compatibility benchmarking
.PHONY: doc
doc:
SKIP_WASM_BUILD=1 cargo doc --open
.PHONY: cargo-update
cargo-update:
cargo update
cargo update --manifest-path node/Cargo.toml
make test