show/hide this revision's text 2 fix typo

The truth is, that continuous integration makes most sense in teams. Single developers can also get some advantages, you must decide yourself if they are enough to counter the time you invest into setting a CI-system up.

  • If you forgot to checkin some needed file, the repository contains a broken version, even if it works on your machine. CI would detect that case.
  • If your CI-server runs on a different machine, it can indicate dependencies on your build-environment. Means, the build and all tests can work on your dev-box, but on another machine some dependencies aren't fulfilled and the build breaks.
  • Daily builds can indicate, that your older software doesn't work with the newwest newest upgrade of the OS/compiler/library...
  • If your CI-system has an archive of build-artifacts you can easy get an distribution of an older version of your software.
  • Some CI have a nice interface to show you metrics about your build, have links to automatic generated documentation and stuff like that.
show/hide this revision's text 1

The truth is, that continuous integration makes most sense in teams. Single developers can also get some advantages, you must decide yourself if they are enough to counter the time you invest into setting a CI-system up.

  • If you forgot to checkin some needed file, the repository contains a broken version, even if it works on your machine. CI would detect that case.
  • If your CI-server runs on a different machine, it can indicate dependencies on your build-environment. Means, the build and all tests can work on your dev-box, but on another machine some dependencies aren't fulfilled and the build breaks.
  • Daily builds can indicate, that your older software doesn't work with the newwest upgrade of the OS/compiler/library...
  • If your CI-system has an archive of build-artifacts you can easy get an distribution of an older version of your software.
  • Some CI have a nice interface to show you metrics about your build, have links to automatic generated documentation and stuff like that.