1
0
cuberite-2a/uploadCoverage.sh

10 lines
227 B
Bash
Raw Normal View History

2014-05-10 08:03:36 -04:00
#!/usr/bin/env bash
2015-08-26 04:58:51 -04:00
if [ "$TRAVIS_CUBERITE_BUILD_TYPE" == "COVERAGE" ]
2014-05-10 08:09:47 -04:00
then
find tests -type f -name '*.gcda' -exec sh -c 'cp {} $(dirname {})/../$(basename {})' \;
2014-05-17 08:20:28 -04:00
coveralls --exclude lib --exclude Android >/dev/null
2014-05-10 08:03:36 -04:00
fi