be5db14160
* Run cargo fix * Optimize imports * compiles * cleanup * Use Secret to store mac-key Truncate payload properly * cleanup * Reorg imports * brwchk hand waving * Review feedback * whitespace * error chain is dead * Build parity-ethereum with SSE2, SSSE3 and AES enabled This enables the `aesni` crate for 50x faster AES crypto. * Correct rustflag setting * List all target triples because [target.'cfg(…)'] is broken * whitespace * Enable hardware aes for CI builds * Add note about synchronizing changes * Remove "Linker" printout * Build artefacts to check hardware aesni * Skip signing windows binaries * Build windows like before * address grumble
60 lines
2.2 KiB
Bash
Executable File
60 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e # fail on any error
|
|
set -u # treat unset variables as error
|
|
|
|
echo "__________Show ENVIROMENT__________"
|
|
echo "CI_SERVER_NAME: " $CI_SERVER_NAME
|
|
echo "CARGO_HOME: " $CARGO_HOME
|
|
echo "CARGO_TARGET: " $CARGO_TARGET
|
|
echo "CC: " $CC
|
|
echo "CXX: " $CXX
|
|
#strip ON
|
|
export RUSTFLAGS=" -C link-arg=-s"
|
|
|
|
echo "_____ Building target: "$CARGO_TARGET" _____"
|
|
if [ "${CARGO_TARGET}" = "armv7-linux-androideabi" ]
|
|
then
|
|
time cargo build --target $CARGO_TARGET --verbose --color=always --release -p parity-clib --features final
|
|
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 -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 ethkey-cli
|
|
time cargo build --target $CARGO_TARGET --verbose --color=always --release -p whisper-cli
|
|
fi
|
|
|
|
echo "_____ Post-processing binaries _____"
|
|
rm -rf artifacts/*
|
|
mkdir -p artifacts/$CARGO_TARGET
|
|
cd artifacts/$CARGO_TARGET
|
|
|
|
if [ "${CARGO_TARGET}" = "armv7-linux-androideabi" ]
|
|
then
|
|
cp -v ../../target/$CARGO_TARGET/release/libparity.so ./libparity.so
|
|
else
|
|
cp -v ../../target/$CARGO_TARGET/release/parity ./parity
|
|
cp -v ../../target/$CARGO_TARGET/release/parity-evm ./parity-evm
|
|
cp -v ../../target/$CARGO_TARGET/release/ethstore ./ethstore
|
|
cp -v ../../target/$CARGO_TARGET/release/ethkey ./ethkey
|
|
cp -v ../../target/$CARGO_TARGET/release/whisper ./whisper
|
|
fi
|
|
|
|
echo "_____ Calculating checksums _____"
|
|
for binary in $(ls)
|
|
do
|
|
rhash --sha256 $binary -o $binary.sha256 #do we still need this hash (SHA2)?
|
|
if [[ $CARGO_TARGET == *"x86_64"* ]];
|
|
then
|
|
./parity tools hash $binary > $binary.sha3
|
|
else
|
|
echo "> ${binary} cannot be hashed with cross-compiled binary (keccak256)"
|
|
fi
|
|
done
|