toxcore/other/travis/toxcore-after_script

14 lines
342 B
Bash
Executable File

#!/bin/sh
set -e -x
# Only submit coverage from the clang build. GCC and clang disagree slightly,
# so we arbitrarily choose the alphabetically first one for the report.
if [ "$CC" = "clang" ]; then
coveralls \
--exclude auto_tests \
--exclude other \
--exclude testing \
--gcov-options '\-lp'
fi