2017-05-27 16:16:46 +01:00
|
|
|
#!/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
|
2017-05-29 11:45:55 +01:00
|
|
|
./mvnw --projects builder,plugin test jacoco:report coveralls:report
|
|
|
|
fi
|