Do you know the minimum builds to create on any branch?

Posted by Martin Hinshelwood on Geeks with Blogs See other posts from Geeks with Blogs or by Martin Hinshelwood
Published on Thu, 18 Mar 2010 13:51:42 GMT Indexed on 2010/03/18 15:11 UTC
Read the original article Hit count: 324

Filed under:

You should always have three builds on your team project. These should be setup and tested using an empty solution before you write any code at all.

clip_image002
Figure: Three builds named in the format [TeamProject].[AreaPath]_[Branch].[Gate|CI|Nightly] for every branch.

 

These builds should use the same XAML build workflow; however you may set them up to run a different set of tests depending on the time it takes to run a full build.

  • Gate – Only needs to run the smallest set of tests, but should run most if not all of the Unit Test. This is run before developers are allowed to check-in
  • CI – This should run all Unit Tests and all of the automated UI tests. It is run after a developer check-in.
  • Nightly – The Nightly build should run all of the Unit Tests, all of the Automated UI tests and all of the Load and Performance tests. The nightly build is time consuming and will run but once a night. Packaging of your Product for testing the next day may be done at this stage as well.
clip_image004
Figure: You can control what tests are run and what data is collected while they are running.

Note: We do not run all the tests every time because of the time consuming nature of running some tests, but ALL tests should be run overnight.

Note: If you had a really large project with thousands of tests including long running Load tests you may need to add a Weekly build to the mix.

 

 image
Figure: Bad example, you can’t tell what these builds do if they are in a larger list

 image
Figure: Good example, you know exactly what project, branch and type of build these are for.

 

© Geeks with Blogs or respective owner