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
1 changed files with 3 additions and 3 deletions

View File

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