bd3bc5c168
* Updating the CI system with the publication of releases and binary files on github Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com> * add missed scripts * chmod +x scripts * fix download link for github * rebuilding CI scripts * small fixes * update submodule wasm tests * ci: fix merge leftovers * ci: remove gitlab-next from ci triggers * ci: fix git add in docs script * ci: use nightly instead of master for publish triggers * ci: remove sleep from gitlab config * ci: replace ':' with '-' in gitlab targets * ci: fix recursive copy in docs script
21 lines
696 B
Bash
Executable File
21 lines
696 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
git submodule update --init --recursive
|
|
rm -rf target/*
|
|
cargo test --all --exclude evmjit --no-run -- --test-threads 8|| exit $?
|
|
KCOV_TARGET="target/cov"
|
|
KCOV_FLAGS="--verify"
|
|
EXCLUDE="/usr/lib,/usr/include,$HOME/.cargo,$HOME/.multirust,rocksdb,secp256k1"
|
|
mkdir -p $KCOV_TARGET
|
|
echo "__________Cover RUST___________"
|
|
for FILE in `find target/debug/deps ! -name "*.*"`
|
|
do
|
|
timeout --signal=SIGKILL 5m kcov --exclude-pattern $EXCLUDE $KCOV_FLAGS $KCOV_TARGET $FILE
|
|
done
|
|
timeout --signal=SIGKILL 5m kcov --exclude-pattern $EXCLUDE $KCOV_FLAGS $KCOV_TARGET target/debug/parity-*
|
|
echo "Cover JS"
|
|
bash <(curl -s https://codecov.io/bash)&&
|
|
echo "Uploaded code coverage"
|
|
exit 0
|