Hey everyone, I’m having some hard time finding ou...
# code-coverage
a
Hey everyone, I’m having some hard time finding out at what point I should create the code coverage reports (probably with JaCoco), considering I’m using Github for version control, Sonarcloud for code analysis and Jenkins for CI, I’m not sure how to put those building blocks together
j
We have our maven build generate JaCoCo reports and then upload to codecov.io during CI. Codecov then ties it back to github via PR/commit status hooks.
a
And that Maven build is launched by the CI right?
j
yep. CI runs maven, then runs the codecov uploader tool. possibly sonarcloud replaces codecov, not sure?
a
Yes, pretty much the same thing, it reads reports and then displays a result on Github
👍 1