1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 06:12: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

@ -19,6 +19,6 @@ install: gradle assemble --stacktrace
script: gradle check --stacktrace 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