sccache --stop-server -> sccache --show-stats
(#11255)
This commit is contained in:
parent
42437fbc57
commit
9f94473eaf
@ -37,6 +37,12 @@ variables:
|
|||||||
before_script:
|
before_script:
|
||||||
- rustup show
|
- rustup show
|
||||||
- cargo --version
|
- cargo --version
|
||||||
|
retry:
|
||||||
|
max: 2
|
||||||
|
when:
|
||||||
|
- runner_system_failure
|
||||||
|
- unknown_failure
|
||||||
|
- api_failure
|
||||||
tags:
|
tags:
|
||||||
- linux-docker
|
- linux-docker
|
||||||
|
|
||||||
@ -63,42 +69,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-evmbin:
|
|
||||||
stage: test
|
|
||||||
<<: *docker-cache-status
|
|
||||||
script:
|
|
||||||
- time cargo check -p evmbin --target $CARGO_TARGET --locked --verbose --color=always
|
|
||||||
- sccache -s
|
|
||||||
|
|
||||||
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
|
||||||
|
@ -13,15 +13,18 @@ echo "CC: " $CC
|
|||||||
echo "CXX: " $CXX
|
echo "CXX: " $CXX
|
||||||
#strip ON
|
#strip ON
|
||||||
export RUSTFLAGS=" -C link-arg=-s"
|
export RUSTFLAGS=" -C link-arg=-s"
|
||||||
# Linker for crosscomile
|
|
||||||
echo "_____ Linker _____"
|
|
||||||
cat .cargo/config
|
|
||||||
|
|
||||||
echo "_____ Building target: "$CARGO_TARGET" _____"
|
echo "_____ Building target: "$CARGO_TARGET" _____"
|
||||||
if [ "${CARGO_TARGET}" = "armv7-linux-androideabi" ]
|
if [ "${CARGO_TARGET}" = "armv7-linux-androideabi" ]
|
||||||
then
|
then
|
||||||
time cargo build --target $CARGO_TARGET --verbose --color=always --release -p parity-clib --features final
|
time cargo build --target $CARGO_TARGET --verbose --color=always --release -p parity-clib --features final
|
||||||
else
|
else
|
||||||
|
if [ "${CARGO_TARGET}" = "x86_64-unknown-linux-gnu" ] || [ "${CARGO_TARGET}" = "x86_64-apple-darwin" ]
|
||||||
|
then
|
||||||
|
# NOTE: Enables the aes-ni instructions for RustCrypto dependency.
|
||||||
|
# If you change this please remember to also update .cargo/config
|
||||||
|
export RUSTFLAGS="$RUSTFLAGS -Ctarget-feature=+aes,+sse2,+ssse3"
|
||||||
|
fi
|
||||||
time cargo build --target $CARGO_TARGET --verbose --color=always --release --features final
|
time cargo build --target $CARGO_TARGET --verbose --color=always --release --features final
|
||||||
time cargo build --target $CARGO_TARGET --verbose --color=always --release -p evmbin
|
time cargo build --target $CARGO_TARGET --verbose --color=always --release -p evmbin
|
||||||
time cargo build --target $CARGO_TARGET --verbose --color=always --release -p ethstore-cli
|
time cargo build --target $CARGO_TARGET --verbose --color=always --release -p ethstore-cli
|
||||||
@ -53,8 +56,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
|
||||||
|
Loading…
Reference in New Issue
Block a user