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.
This commit is contained in:
Paul Campbell 2017-05-29 11:51:29 +01:00
parent 4a4da15d4f
commit dd17826a60

View file

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