This repository was archived by the owner on Nov 6, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +18
-14
lines changed
Expand file tree Collapse file tree 5 files changed +18
-14
lines changed Original file line number Diff line number Diff line change @@ -290,4 +290,3 @@ publish-docs:
290290 tags :
291291 - linux-docker
292292 allow_failure : true
293-
Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ cat .cargo/config
1818echo " _____ Building target: " $CARGO_TARGET " _____"
1919if [ " ${CARGO_TARGET} " = " armv7-linux-androideabi" ]
2020then
21- time cargo build --target $CARGO_TARGET --release -p parity-clib --features final
21+ time cargo build --target $CARGO_TARGET --verbose --color=always -- release -p parity-clib --features final
2222else
23- time cargo build --target $CARGO_TARGET --release --features final
24- time cargo build --target $CARGO_TARGET --release -p evmbin
25- time cargo build --target $CARGO_TARGET --release -p ethstore-cli
26- time cargo build --target $CARGO_TARGET --release -p ethkey-cli
27- time cargo build --target $CARGO_TARGET --release -p whisper-cli
23+ time cargo build --target $CARGO_TARGET --verbose --color=always -- release --features final
24+ time cargo build --target $CARGO_TARGET --verbose --color=always -- release -p evmbin
25+ time cargo build --target $CARGO_TARGET --verbose --color=always -- release -p ethstore-cli
26+ time cargo build --target $CARGO_TARGET --verbose --color=always -- release -p ethkey-cli
27+ time cargo build --target $CARGO_TARGET --verbose --color=always -- release -p whisper-cli
2828fi
2929
3030echo " _____ Post-processing binaries _____"
Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ echo "RUSTC_WRAPPER: " $RUSTC_WRAPPER
1414echo " SCCACHE_DIR: " $SCCACHE_DIR
1515
1616echo " _____ Building target: " $CARGO_TARGET " _____"
17- time cargo build --target $CARGO_TARGET --release --features final
18- time cargo build --target $CARGO_TARGET --release -p evmbin
19- time cargo build --target $CARGO_TARGET --release -p ethstore-cli
20- time cargo build --target $CARGO_TARGET --release -p ethkey-cli
21- time cargo build --target $CARGO_TARGET --release -p whisper-cli
17+ time cargo build --target $CARGO_TARGET --verbose -- release --features final
18+ time cargo build --target $CARGO_TARGET --verbose -- release -p evmbin
19+ time cargo build --target $CARGO_TARGET --verbose -- release -p ethstore-cli
20+ time cargo build --target $CARGO_TARGET --verbose -- release -p ethkey-cli
21+ time cargo build --target $CARGO_TARGET --verbose -- release -p whisper-cli
2222
2323echo " __________Sign binaries__________"
2424scripts/gitlab/sign-win.cmd $keyfile $certpass target/$CARGO_TARGET /release/parity.exe
Original file line number Diff line number Diff line change 11#! /bin/bash
2+ # ARGUMENT $1 Rust flavor to run test with (stable/beta/nightly)
3+
24echo " ________Running test-linux.sh________"
35set -e # fail on any error
46set -u # treat unset variables as error
@@ -8,5 +10,8 @@ OPTIONS="--release"
810# use nproc `linux only
911THREADS=$( nproc)
1012
13+ rustup default $1
14+ rustup show
15+
1116echo " ________Running Parity Full Test Suite________"
12- time cargo test $OPTIONS --features " $FEATURES " --locked --all --target $CARGO_TARGET -- --test-threads $THREADS
17+ time cargo test $OPTIONS --features " $FEATURES " --locked --all --target $CARGO_TARGET --verbose --color=always -- --test-threads $THREADS
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ echo "________Running validate_chainspecs.sh________"
66ERR=0
77
88echo " ________Validate chainspecs________"
9- time cargo build --release -p chainspec
9+ time cargo build --release -p chainspec --verbose --color=always
1010
1111for spec in ethcore/res/* .json; do
1212 if ! ./target/release/chainspec " $spec " ; then ERR=1; fi
You can’t perform that action at this time.
0 commit comments