vote up 3 vote down star
1

Right now we are building a number of C++ apps for Win32 platform. We will be soon porting to Linux and then maybe more (32 and 64 bits for both).

What is the standard practice , do you use multiple hudson servers each on their own platform to do a build, or does the hudson service create VMs and do builds?

It is not clear to me the best practical way to do this.

Ideally I just want one box with a bunch of VMs running hudson, and then it kicks off builds as needed.

Is there a resource someone can point me to for this?

flag

55% accept rate

2 Answers

vote up 2 vote down

I've never used hudson for C++ but for what you are planning to do, it might make sense to look at the VMWare plugin and see if it will do what you want. I would recommend having only a single Hudson master if possible. What you most likely want to do is set up a VMWare machine image with a Hudson Slave process for each target environment then spawn a build in that Slave.

link|flag
That is the ideal goal, but I am not sure how practical that is. I just have to play around with it I guess. – tim Oct 2 at 21:36
vote up 2 vote down

I have played with hudson in a multiple platform scenario a bit more than a year ago. I had one hudson server (which was ridiculously easy to setup) on some machine and separate build slaves for each of the platforms. I remember that for a while one of the build clients was in a VirtualBox on the machine that hosted the hudson server. (I think I had the server on a VM for a while, too.) I cannot remember there being any principle problem with this setup.

However, if you want to have several virtual build machines building on the same physical machine I think you'd need a very powerful machine for that. C++ compilation takes quite an amount of resources and, IIRC, when hudson starts a build, it starts it on all platforms at the same time.

link|flag
Yep - I realize that we may have to have multiple machines and in that case it may or may not be simpler to just have hudson running on each platform, though that is silly. Ideally I want the one hudson server to trigger each slave. I guess I just have to bite the bullet and buy additional hardware. – tim Oct 2 at 21:38
Tim, you just need one hudson server, not one for each platform. But you will need one build slave per platform. You can test this with virtual machines until you think it's working, but in the end you probably won't enjoy CI if you build three platforms in VMs on the same physical machine. – sbi Oct 2 at 22:54
1  
It's fairly important to understand that you only ever* need 1 hudson server. You can do everything else with slaves installed on appropriate architectures. (* for reasonable interpretations of ever) – Jim T Oct 4 at 9:53

Your Answer

Get an OpenID
or

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