kemitix-checkstyle-ruleset/travis-ci/travis-coveralls-report.sh

8 lines
313 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2017-05-29 12:04:43 +01:00
## Only send coveralls reports from Travis-CI. Some CIs, like Shippable, lie by setting TRAVIS=true.
## Currently, Shippable, does not set TRAVIS_LANGUAGE, but Travis-CI does.
if [ "$TRAVIS_LANGUAGE" = "java" ];then
./mvnw --projects builder,plugin test jacoco:report coveralls:report
fi