Reputation: 2974
I am using TeamCity as my CI server.When I run a build for an android studio project it is failing. But when I open the cloned repository in Android Studio in the build server itself it gives a successful build. Please help me out..
EDIT::
When the checkout directory from TeamCity is opened in Android Studio it is also failing.So I guess the issue is with the checkout from TeamCIty.
Upvotes: 1
Views: 204
Reputation: 2974
Finally managed to get an answer to my own question.Some files were kept in the .hgignore
folder as a result of which it did not get checked out during TeamCity build.Removing those from the .hgignore
folder solved the problem for me.
Upvotes: 1