Skip to content

Commit

Permalink
Fixes rust-lang#9
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDan64 committed Sep 8, 2017
1 parent 65bd81a commit 27f85cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ addons:
- libedit-dev
- libdw-dev
- binutils-dev
- libiberty-dev

before_install:
- export PATH=/usr/lib/llvm-3.7/bin/:$HOME/.local/bin:$PATH
Expand All @@ -43,7 +44,7 @@ after_success: |
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/{inkwell,tests}-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib,tests --verify "target/cov/$(basename $file)" "$file"; done &&
for file in $(find . -regex "./target/debug/tests-.*[^\.d]"); do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib,tests --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"
Expand Down

0 comments on commit 27f85cc

Please sign in to comment.