mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
15 lines
372 B
Bash
Executable File
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
|