rink-rs/.travis.yml
Colin Benner 60e644d17d Fix pattern in kcov invocation
The old pattern would ignore test executables whose file name ends with
a 'd'.  This should not happen any longer
2018-11-20 22:26:35 +01:00

39 lines
929 B
YAML

language: rust
sudo: required
rust:
- nightly
cache: cargo
script:
- rm -f target/debug/rink-* target/debug/query-* target/debug/canonicalize-*
- cargo build --verbose
- cargo test --verbose
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/*-*[^\.]?;
do 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"