Skip to content

Commit

Permalink
commented out codacy coverage (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong committed Aug 5, 2018
1 parent abad005 commit 57f4117
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ addons:
packages:
- jq

before_install:
- wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)
#removed as the codacy integration keeps breaking the build
#before_install:
# - wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)

matrix:
include:
Expand All @@ -41,9 +42,10 @@ matrix:
script:
- travis_wait 60 mvn install -DreleaseTesting

#removed from after_success as the codacy integration keeps breaking the build
#java -cp ~/codacy-coverage-reporter-assembly-latest.jar com.codacy.CodacyCoverageReporter -l Java -r build-reporting/target/coverage-reports/jacoco.xml;
after_success:
- if [ "$JDK" == "JDK8" ]; then
java -cp ~/codacy-coverage-reporter-assembly-latest.jar com.codacy.CodacyCoverageReporter -l Java -r build-reporting/target/coverage-reports/jacoco.xml;
mvn sonar:sonar -Dsonar.java.coveragePlugin=jacoco -Dsonar.jacoco.reportPath=build-reporting/target/jacoco.xml;
./coverity_scan.sh;
fi;
Expand Down

0 comments on commit 57f4117

Please sign in to comment.