Remove coverage reporting

This commit is contained in:
Valentin Brandl 2019-04-21 14:03:04 +02:00
parent 3bacbdf222
commit 685b92a654
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -1,7 +1,5 @@
language: rust language: rust
sudo: required
rust: rust:
- stable - stable
- beta - beta
@ -14,32 +12,6 @@ matrix:
allow_failures: allow_failures:
- rust: nightly - rust: nightly
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/hoc-*; do [ -x "${file}" ] || continue; mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"
notifications: notifications:
email: email:
on_failure: always on_failure: always