vote up 3 vote down star

I heard google has some automated process like that:

  • When you check in, your code is checked into a temporary location.
  • It is built.
  • Style checks run.
  • Tests run.
  • If there are no problems, code goes to actual repository.
  • You receive an e - mail containing test results, performance graphs, style check results and whether your code is checked in.

So if you want to learn if you broke something or the great performance gain you expected occurred, you just check in and receive an e - mail telling you what you need to know.

What are your favorite build server best practices?

flag

73% accept rate
Search here. There are quite a few questions regarding build process best practices. – EBGreen Jan 7 '09 at 21:12

3 Answers

vote up 2 vote down

What you described for google is what every basic build process does. Specific projects may have additional needs, for example - how we deploy web applications from staging to production:

  • Build start
  • Live site is taken offline (Apache redirects to different directory holding an "Under construction" page)
  • SVN update is ran for production server
  • Database schema deltas are ran
  • Tests are ran against updated source and schema
  • In case of fail: rollback is ran (SVN revert and database schema UNDO)
  • Site gets back online
  • Build ends
link|flag
vote up 0 vote down

On the java platform I have tried every single major CI system there is. My tip is that paying for a commercially supported solution has been the cheapest build system I've ever seen. These things take time to maintain, support and troubleshoot. Especially with a heavy load of builds running all the time.

link|flag
vote up 0 vote down

We installed TeamCity (free) for CI and were up and running in a few hours. Definitely a good use of our time.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.