mirror of
https://github.com/mimblewimble/grin.git
synced 2025-02-01 17:01:09 +03:00
Adding kcov code coverage to chain and core modules (#547)
Fixing bug in .yml file. Adding cargo test --no-run command to after_success. Adding test coverage to rest of grin modules.
This commit is contained in:
parent
7212a0e743
commit
a69b5af7c2
1 changed files with 32 additions and 12 deletions
44
.travis.yml
44
.travis.yml
|
@ -36,26 +36,46 @@ env:
|
||||||
|
|
||||||
after_success: |
|
after_success: |
|
||||||
pwd &&
|
pwd &&
|
||||||
echo "HERE" &&
|
|
||||||
wget https://github.com/mimblewimble/kcov/archive/master.tar.gz &&
|
wget https://github.com/mimblewimble/kcov/archive/master.tar.gz &&
|
||||||
tar xzf master.tar.gz &&
|
tar xzf master.tar.gz &&
|
||||||
cd kcov-master &&
|
cd kcov-master &&
|
||||||
mkdir build &&
|
mkdir build && cd build &&
|
||||||
cd build &&
|
cmake .. && make && mv src/kcov ../.. &&
|
||||||
cmake .. &&
|
|
||||||
make &&
|
|
||||||
sudo make install &&
|
|
||||||
cd ../.. &&
|
cd ../.. &&
|
||||||
rm -rf kcov-master &&
|
rm -rf kcov-master &&
|
||||||
cargo test --no-run &&
|
|
||||||
cd ../
|
cd ../
|
||||||
pwd &&
|
cd api && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_core* &&
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_api* &&
|
||||||
|
echo "Finished coverage for grin_api"
|
||||||
|
cd core && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_core* &&
|
||||||
echo "Finished coverage for grin_core"
|
echo "Finished coverage for grin_core"
|
||||||
kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_chain* &&
|
cd chain && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_chain* &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/mine_simple_chain* &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/store_indices* &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/test_coinbase_maturity* &&
|
||||||
echo "Finished coverage for grin_chain"
|
echo "Finished coverage for grin_chain"
|
||||||
kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/mine_simple_* &&
|
cd keychain && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
echo "Finished coverage for mine_simple"
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_keychain* &&
|
||||||
|
echo "Finished coverage for grin_keychain"
|
||||||
|
cd p2p && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_p2p* &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/peer_handshake* &&
|
||||||
|
echo "Finished coverage for grin_p2p"
|
||||||
|
cd pow && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_pow* &&
|
||||||
|
echo "Finished coverage for grin_pow"
|
||||||
|
cd store && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_store* &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/sumtree* &&
|
||||||
|
echo "Finished coverage for grin_store"
|
||||||
|
cd wallet && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_wallet* &&
|
||||||
|
echo "Finished coverage for grin_wallet"
|
||||||
|
cd util && cargo test --no-run && cd .. && rm target/debug/*.d &&
|
||||||
|
./kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov target/debug/grin_util* &&
|
||||||
|
echo "Finished coverage for grin_util"
|
||||||
bash <(curl -s https://codecov.io/bash) &&
|
bash <(curl -s https://codecov.io/bash) &&
|
||||||
echo "Uploaded code coverage"
|
echo "Uploaded code coverage"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue