toxcore/other/travis/toxcore-after_script
2016-08-12 20:49:50 +02:00

15 lines
372 B
Bash
Executable File

#!/bin/sh
set -e -u -x
. other/travis/env-$ENV.sh
# 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