kemitix-checkstyle-ruleset/travis-ci/travis-coveralls-report.sh
Paul Campbell dd17826a60 KCR29: travis-ci: dump $TRAVIS and other env
Trying to detect when running in Travis CI and not Shippable so only
Travis-CI submits to coveralls.
2017-05-29 11:51:29 +01:00

7 lines
155 B
Bash
Executable file

#!/usr/bin/env bash
echo "TRAVIS: $TRAVIS"
set
if [ "$TRAVIS" = "true" ];then
./mvnw --projects builder,plugin test jacoco:report coveralls:report
fi