1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 12:02:05 +01:00

Travis-CI: Re-enable coveralls

which got accidentally disabled when we switched to Java 8 builds
only.
This commit is contained in:
Florian Schmaus 2017-04-25 17:13:45 +02:00
parent cab5596a0e
commit f48f0cab5b

View file

@ -20,5 +20,5 @@ script: gradle check --stacktrace
after_success: after_success:
- JAVAC_VERSION=$((javac -version) 2>&1) - JAVAC_VERSION=$((javac -version) 2>&1)
# Only run jacocoRootReport in the Java7 build # Only run jacocoRootReport in the Java 8 build
- if [[ "$JAVAC_VERSION" = javac\ 1.7.* ]]; then gradle jacocoRootReport coveralls; fi - if [[ "$JAVAC_VERSION" = javac\ 1.8.* ]]; then gradle jacocoRootReport coveralls; fi