vote up 19 vote down star
7

There's a dozen services that provide hosted version control, hosted ticket tracking, hosted project management, and combinations of all of the above, there's even hosted web-based IDEs. But nobody's yet offered a hosted continuous integration service; at least that I can find. The concept seems simple enough: I register and provide the URL to my source code repository, it grabs my code and builds it via ant/rake/whatever, then runs the suite of tests and some metrics (code coverage, performance, etc.). Is there some prohibitive barrier to entry I'm not considering?

flag

8 Answers

vote up 6 vote down check

Good question. Relevance is launching just such a service soon:

http://runcoderun.com

Drop by and have a look around. We'll be making more public announcements soon.

link|flag
vote up 7 vote down

So, two comments.

  1. People apparently do offer hosted CI services. http://www.google.com/search?q=hosted+continuous+integration

  2. In general, it's a much tougher sell for hosted CI because it's something that's VERY hard on the CPU and disk (much more so than web hosting, for example), so it's going to need to be priced differently. It's also extremely niche, which means it's probably not worth the hassle.

link|flag
vote up 4 vote down

Hum...

You could install one continuous integration server by yourselft if you buy a VPS, but I understand your point. You want something out of the box. The challenges that I see:

  1. how to deals with the multitude of languages/environments/frameworks/databases/operational systems/etc
  2. how to handle local dependencies
  3. how to handle with intensive cpu usage (with builds that starts some kind of load test or whatever)
  4. how to keep large history of huge generated artifacts.

Sure, some points (3 and 4) already have solutions like Amazon Web Services, Google App Engine and others.

Kind Regards

link|flag
vote up 2 vote down

The most immediate problem with such a service would be actually estimating the CPU needed - build services is potentially unbounded, especially when you need to cater for a large multitude of types of projects. There are also potential security issues.

And for a large variety of projects to work properly, you'd probably need a pretty big staff.

link|flag
vote up 1 vote down

In addition to RunCodeRun recommended by @jgehtland I also discovered Devver (http://devver.net) which also, sadly, is still in private beta.

link|flag
vote up 1 vote down

The previous posters forgot to specify that

  • runcoderun.com does work only with GIT repositories from github.com
  • devver.net does work only for Ruby projects.
link|flag
vote up 1 vote down

For Java teams you might also want to look at Mike also in private beta.

There is also a recent blog post from the Build Doctor discussing a few alternatives, from DIY amazon AMIs (CI in a box) to a bespoke service (CI Foundry) and exisitng providers such as Run Code Run.

link|flag
vote up 0 vote down

There also the CodeBetter TeamCity server if your project is open source.

link|flag

Your Answer

Get an OpenID
or

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