bamboo - Ant file copy pattern to match android lint output? -
i attempting add android lint output artifact bamboo plan.
the lint output includes, @ same directory level, file called "lint-results.html" , directory called "lint-results_files" contains css , pngs format html file. root directory contains other files , folders don't want included in artifact. ant-style file copy pattern can use bring html file , supporting directory bamboo artifact?
or - maybe simpler - there way can control lint output appears, can use **/* directory has no extraneous files?
you can set path lint's html-report next lint options:
android { lintoptions { abortonerror false htmloutput file("build/lint/lint-report.html") } } then use "**/* " mask saving produced output , set artifact location "app/build/lint".
Comments
Post a Comment