blob: 7eb1d998343ca439d41436674582a31041aa86f7 (
plain) (
tree)
|
|
#!/usr/bin/env bash
if [ "$TRAVIS_MCSERVER_BUILD_TYPE" == "COVERAGE" ]
then
find tests -type f -name '*.gcda' -exec sh -c 'cp {} $(dirname {})/../$(basename {})' \;
coveralls --exclude lib --exclude Android --gcov-options ' -q'
fi
|