dmotpan / ci-matters

Integration (comparison) of different continuous integration services on Android project

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ci-matters

Integration (comparison) of different continuous integration services on Android project.

CI's integration

TODO

  • GreenHouse
  • Gitlab CI
  • Circle CI
  • Drone.io
  • Snap CI

Comparison

Comparison table

This table should help people make a decision which CI to choose for the project.

| CI | πŸ‘―,πŸ‘·,πŸ”ŽπŸ›,🚦,πŸ“¬ | πŸ“±πŸ‘€ | πŸš€ | πŸ“„ | πŸ“ˆ | πŸ‘€πŸ™Œ/☁️ | πŸ“»/πŸ’» | πŸ’΅ | | ------------- |:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:|:---:| | Jenkins |⭐|⭐|⭐|⭐|⭐|πŸ‘€πŸ™Œ|πŸ“»/πŸ’»|πŸ†“| | TeamCity |⭐|⭐|⭐|⭐|⭐|πŸ‘€πŸ™Œ/☁️|πŸ’»|πŸ’°πŸ’°πŸ’°| | Travis CI |⭐|⭐|⭐|⭐|❌|☁️|πŸ’»|πŸ’°πŸ’°| | Bitrise |⭐|⭐|⭐|⭐|❌|☁️|πŸ’»|πŸ’°πŸ’°| | Shippable |⭐|⭐|⭐|⭐|❌|☁️|πŸ“»|πŸ’°| | Buddybuild |⭐|⭐|❌|❌|❌|☁️|πŸ’»|πŸ’°πŸ’°| | Gitlab CI |.|.|.|.|.|.|.|πŸ’°| | Circle CI |.|.|.|.|.|.|.|πŸ’°| | GreenHouse |.|.|.|.|.|.|.|πŸ’°πŸ’°| | Drone.io |.|.|.|.|.|.|.|πŸ’°| | Snap CI |.|.|.|.|.|.|.|πŸ’°|

  1. πŸ‘― - clone 2. πŸ‘· - build 3. πŸ”ŽπŸ› - test 4. 🚦 - analyse 5. πŸ“¬ - notify
  2. πŸ“±πŸ‘€ - UI tests 7. πŸš€ - deploy 8. πŸ“„ - configuration file 9. πŸ“ˆ - visual reports
  3. πŸ‘€πŸ™Œ/☁️ - self-hosted/cloud 11. πŸ“»/πŸ’» - CI user interface (old/new) 12. πŸ’΅ - price

Pricing

All listed CI's provide free plan with some restrictions like "open-source projects only" or "only 1 build node", but it's enough to configure the build process and check if CI suits or not.

Free plans

Choosing a free plan for a project is more suitable for a freelance project. Usually, some services provide limits on such plans for understandable reasons.

Paid plans

CI's have different approaches and different paid plans. Check every CI pricing information for more details and choose the best option for you.

What might matter is the starting price for paid plan:

  • Jenkins - starts with X$. (paid version (Cloudbees), no public information)
  • Travis CI - starts with 69$/month. (1 concurrent build, ∞ projects, ∞ build time)
  • Bitrise - starts with 50$/month. (1 concurrent build, ∞ projects, 45 min. max build time)
  • TeamCity - starts with 299$. (4 concurrent builds, 30 project configurations, ∞ build time)
  • Shippable - starts with 25$/month. (2 concurrent builds, ∞ projects, ∞ build time)
  • Gitlab CI - starts with 15$/month. (2 concurrent builds, ∞ projects, ∞ build time)
  • Circle CI - starts with 39$/month. (2 concurrent builds, ∞ projects, 500 minutes build time per month)
  • GreenHouse - starts with 49$/month. (1 concurrent build, ∞ projects, ∞ build time)
  • Drone.io - starts with 25$/month. (1 concurrent build, 5 private projects, ∞ build time)
  • Snap CI - starts with 30$/month. (1 concurrent build, 5 private projects, ∞ build time)
  • Buddybuild - starts with 49$/month. (1 concurrent build, ∞ projects, ∞ build time)

Checkstyle

Project uses custom Checkstyle rules.


Fabric/Crashlytics project configuration

In order to upload APK to Crashlytics project should have following configuration: ${projectDir}/fabric.properties file with apiSecret and io.fabric.ApiKey in AndroidManifest.xml(1, 2) file. Both keys should not be uploaded to the repository for security reasons!

Pass both parameters to your build from command line:

./gradlew -PfabricApiKey="YOUR_API_KEY" -PfabricApiSecret="YOUR_API_SECRET" crashlyticsUploadDistributionDebug

or export these keys as environment variables on a build machine and they will be automatically read from there during the build (no need to pass keys as parameters in this case).


Coveralls

Coverage Status

Coveralls provides test coverage information. COVERALLS_REPO_TOKEN environment variable should be exported on the build machine.

About

Integration (comparison) of different continuous integration services on Android project

License:Apache License 2.0


Languages

Language:Groovy 41.8%Language:Java 35.6%Language:Shell 22.6%