Additional info on parity build.

This commit is contained in:
Gav Wood 2016-02-05 11:51:12 +01:00
parent 0506a978e9
commit cd24ffa723

View File

@ -626,15 +626,23 @@ function run_installer()
git submodule init git submodule init
git submodule update git submodule update
info "Building & testing Parity..." info "Building..."
cargo test --release -p ethcore-util cargo build --release
info "Running consensus tests..." cd ..
cargo test --release --features ethcore/json-tests -p ethcore
echo echo
info "Parity source code is in $(pwd)/parity" head "Parity is built!"
info "Run a client with: ${b}cargo run --release${reset}" info "Parity source code is in ${b}$(pwd)/parity${reset}. From that path, you can:"
info "- Run a client & sync the chain with:"
info " ${b}cargo run --release${reset}"
info "- Run a JSONRPC-capable client (for use with netstats) with:"
info " ${b}cargo run --release -- -j --jsonrpc-url 127.0.0.1:8545${reset}"
info "- Run tests with:"
info " ${b}cargo test --release --features ethcore/json-tests -p ethcore${reset}"
info "- Install the client with:"
info " ${b}sudo cp target/release/parity /usr/bin${reset}"
echo
} }
function install_netstats() function install_netstats()