Travis VS CircleCi VS Jenkins

I am writing tests for my Android project, and since there is more than one developer in my team, we would like the commits to automatically build when we push our code on Git so we are now thinking about CI system integration, for example Travis or CircleCI . Since more than one option is available, I would like to choose the one that builds and runs test cases automaticallyalong with the creation of the main application, so that team members are notified if the test does not work and what changes they should make to their code. I tried Travis, its good, (with some headaches when setting up with github repo), I was wondering if any of you guys tried these three questions and suggested one for our purpose.

+4
source share
2 answers

There is a very good comparison between the three in this stackshare table .

This is also a community, so it can be a good starting point to decide which one you are going to use.

Travis CI:

  • Github integration
  • open source

CircleCI

  • Github
  • .

  • ,
+3

Source: https://habr.com/ru/post/1627240/


All Articles