Incremental build with continuous integration server

Posted by altern on Stack Overflow See other posts from Stack Overflow or by altern
Published on 2010-04-26T15:52:15Z Indexed on 2010/04/26 15:53 UTC
Read the original article Hit count: 194

Does any of the continuous integration servers support incremental builds or filtering mechanism? For example, I want to configure some kind of filtering (as I call it) so that committing file to the specific folder will not cause full (clean) build triggering, but will cause only incremental build. By 'incremental build' I mean process that will put only committed files to the required place and all application would not need to be rebuilt from scratch. Working with images is good example of the case when we need such filtering and thus incremental builds: why do we need to rebuild whole application if only images have been changed? What we need to do is just place images to the dedicated place on server.

© Stack Overflow or respective owner

Related posts about continuous-integration

Related posts about build-automation