What guidelines are best suited for leveraging automatic deployments?

Posted by Scott on Programmers See other posts from Programmers or by Scott
Published on 2012-10-09T17:33:17Z Indexed on 2012/10/09 21:58 UTC
Read the original article Hit count: 239

We are hoping to leverage a static code analysis tool (Sonar) as part of our continuous integration server, and are hoping to determine some useful guidelines to serve as a base for allowing the deployment to continue. What conditions should we make mandatory before allowing a build to proceed to the next set of testing?

The obvious answers include that it compiles and the unit tests are successful. But what are some other things we should require before allowing a build to not be rolled back?

© Programmers or respective owner

Related posts about continuous-integration

Related posts about deployment