1
0
cuberite-2a/uploadCoverage.sh

10 lines
223 B
Bash
Raw Normal View History

2014-05-10 05:03:36 -07:00
#!/usr/bin/env bash
2014-05-10 13:18:40 +01:00
if [ "$TRAVIS_MCSERVER_BUILD_TYPE" == "COVERAGE" ]
2014-05-10 13:09:47 +01:00
then
find tests -type f -name '*.gcda' -exec cp {} $(dirname {})/../$(basename {})
2014-05-10 14:05:39 +01:00
coveralls --exclude lib --exclude Android --gcov-options -q
2014-05-10 05:03:36 -07:00
fi