Reputation: 4447
We have TeamCity
as CI
server for Android
projects, of course, we are building it using gradle with lintRelease task.
Gradle's lint task generates .html
report (for direct viewing by human in browser) and .xml
for automated reports.
My question is how to integrate Android Lint's .xml reports with TeamCity and how to give access to .html report (problem is that it creates folder with .css and images which is not connecting if we are sharing this report as artifact)
Upvotes: 3
Views: 1262
Reputation: 94
The solution is to created a build step of type "Inspections (IntelliJ IDEA)" that points to a gradle file.
Upvotes: 0
Reputation: 4447
Task in TeamCity issue tracker https://youtrack.jetbrains.com/issue/TW-37700
Upvotes: 1