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

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -