Tutorial: Continuous integration - The basics
Welcome to Continuous integration tutorial!
This tutorial will teach you what is Continuous Integration (CI) and how to set it up to help your development and deployment flow.

CI in RocketGit is called when a branch of your choice is pushed by you. You can choose the branch by regular expressions, so you can do CI only for some branches, for example, "pre-production" or "production".

Continuous Integration automatically can:
  • Build and test your changes on different operating systems and architectures
  • Deploy a build that passed the tests, using your custom script
  • Add custom labels to the build and test steps to easily identify what gone wrong.