Fix sccache statistics (#11145)
* Fix sccache statictics * warning update for non x86_64 architectures * sccache -s -> sccache --show-stats
This commit is contained in:
parent
f48780c29b
commit
11c447dfbe
@ -63,35 +63,35 @@ cargo-check 0 3:
|
|||||||
<<: *docker-cache-status
|
<<: *docker-cache-status
|
||||||
script:
|
script:
|
||||||
- time cargo check --target $CARGO_TARGET --locked --no-default-features --verbose --color=always
|
- time cargo check --target $CARGO_TARGET --locked --no-default-features --verbose --color=always
|
||||||
- sccache --stop-server
|
- sccache --show-stats
|
||||||
|
|
||||||
cargo-check 1 3:
|
cargo-check 1 3:
|
||||||
stage: test
|
stage: test
|
||||||
<<: *docker-cache-status
|
<<: *docker-cache-status
|
||||||
script:
|
script:
|
||||||
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --no-default-features --verbose --color=always
|
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --no-default-features --verbose --color=always
|
||||||
- sccache --stop-server
|
- sccache --show-stats
|
||||||
|
|
||||||
cargo-check 2 3:
|
cargo-check 2 3:
|
||||||
stage: test
|
stage: test
|
||||||
<<: *docker-cache-status
|
<<: *docker-cache-status
|
||||||
script:
|
script:
|
||||||
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --features "mio" --verbose --color=always
|
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --features "mio" --verbose --color=always
|
||||||
- sccache --stop-server
|
- sccache --show-stats
|
||||||
|
|
||||||
cargo-check-evmbin:
|
cargo-check-evmbin:
|
||||||
stage: test
|
stage: test
|
||||||
<<: *docker-cache-status
|
<<: *docker-cache-status
|
||||||
script:
|
script:
|
||||||
- time cargo check -p evmbin --target $CARGO_TARGET --locked --verbose --color=always
|
- time cargo check -p evmbin --target $CARGO_TARGET --locked --verbose --color=always
|
||||||
- sccache -s
|
- sccache --show-stats
|
||||||
|
|
||||||
cargo-check-benches:
|
cargo-check-benches:
|
||||||
stage: test
|
stage: test
|
||||||
<<: *docker-cache-status
|
<<: *docker-cache-status
|
||||||
script:
|
script:
|
||||||
- time cargo check --all --benches --target $CARGO_TARGET --locked --verbose --color=always
|
- time cargo check --all --benches --target $CARGO_TARGET --locked --verbose --color=always
|
||||||
- sccache -s
|
- sccache --show-stats
|
||||||
|
|
||||||
cargo-audit:
|
cargo-audit:
|
||||||
stage: test
|
stage: test
|
||||||
|
@ -54,8 +54,8 @@ do
|
|||||||
then
|
then
|
||||||
./parity tools hash $binary > $binary.sha3
|
./parity tools hash $binary > $binary.sha3
|
||||||
else
|
else
|
||||||
echo "> ${binary} cannot be hashed with cross-compiled binary (keccak256)"
|
echo ">[WARN] ${binary} cannot be hashed with cross-compiled binary (keccak256)"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
#show sccache statistics
|
#show sccache statistics
|
||||||
sccache --stop-server
|
sccache --show-stats
|
||||||
|
@ -18,4 +18,4 @@ make VERBOSE=1 -j $THREADS
|
|||||||
cd -
|
cd -
|
||||||
rm -rf $DIR
|
rm -rf $DIR
|
||||||
#show sccache statistics
|
#show sccache statistics
|
||||||
sccache --stop-server
|
sccache --show-stats
|
||||||
|
@ -21,4 +21,4 @@ echo "________Running Parity Full Test Suite________"
|
|||||||
CARGO_INCREMENTAL=0 RUSTFLAGS="-C opt-level=3 -C overflow-checks=on -C debuginfo=2 -Ctarget-feature=+aes,+sse2,+ssse3" time cargo test $OPTIONS --features "$FEATURES" --locked --all --target $CARGO_TARGET --verbose --color=never -- --test-threads $THREADS
|
CARGO_INCREMENTAL=0 RUSTFLAGS="-C opt-level=3 -C overflow-checks=on -C debuginfo=2 -Ctarget-feature=+aes,+sse2,+ssse3" time cargo test $OPTIONS --features "$FEATURES" --locked --all --target $CARGO_TARGET --verbose --color=never -- --test-threads $THREADS
|
||||||
|
|
||||||
#show sccache statistics
|
#show sccache statistics
|
||||||
sccache --stop-server
|
sccache --show-stats
|
||||||
|
@ -16,5 +16,5 @@ for spec in ethcore/res/ethereum/*.json; do
|
|||||||
if ! ./target/release/chainspec "$spec"; then ERR=1; fi
|
if ! ./target/release/chainspec "$spec"; then ERR=1; fi
|
||||||
done
|
done
|
||||||
#show sccache statistics
|
#show sccache statistics
|
||||||
sccache --stop-server
|
sccache --show-stats
|
||||||
exit $ERR
|
exit $ERR
|
||||||
|
Loading…
Reference in New Issue
Block a user