Paul Campbell
dd17826a60
Trying to detect when running in Travis CI and not Shippable so only Travis-CI submits to coveralls.
7 lines
155 B
Bash
Executable file
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
|