Hudson - push the commit to production server

2

1

We have first server with SVN, this SVN has configured hooks to be able to call second server (with Hudson) and do build of the app on the second server.

This is functionall and running fine... but when developing the app we need to test it before pushing it to all users (= we need third server with Hudson).

Of course there's no troubles with running the same architecture on the third server as on the first one.

Anyway we'd need "whatever", which would be able to simply push some commit on the devel server to the production server.

Is there anything, which would solve this problem? Some plugin to Hudson? Whatever...

Radek Simko

Posted 2011-04-02T20:34:57.657

Reputation: 392

As an FYI, I would post this question on Stackoverflow.com – Peter Schuetze – 2011-04-06T13:22:48.267

Answers

1

What does deployment mean for that app (e.g. copying files, stopping and starting services, ...)?

Starting points:

Disclaimer: I am usually hesitant in using the same Hudson/Jenkins for dev and prod deployments. Be sure to set the permissions correct so not everybody can start the prod deployment.

Peter Schuetze

Posted 2011-04-02T20:34:57.657

Reputation: 165