We use Jenkins to deploy code to multiple servers, so that we can manage builds and deployments from the same (even better if you're using the Jenkins IRC plugin).

The deployment is done by a parameterized build job, where the parameter is the version of the project that we want to deploy. The job will run remote commands over ssh on servers that you've defined in the Jenkins configuration. Those commands will pull down a version of our code, unpack it, and run the rest of the install steps.

 

First you'll need to install the Publish over SSH Plugin, which will allow files to be transferred to your servers and remote commands to be run.

Set up the SSH key for remote access of your target servers, in the Manage Jenkins page:

and setup the definitions for each of the servers that you want to deploy to:

Then in the configuration for the new deployment job you've set up, you'll use the "Send files or execute commands over SSH before the build starts" settings in the "Build Environment" section to remotely execute a script to carry out the install steps on each remote server:

Notice that the build parameter "$version" is available to the Exec command that gets remotely executed - other Jenkins environment variables will also be available (e.g. $BUILD_NUMBER, $JOB_NAME etc).

Use the "Add Server" button to add more target servers, with the same Exec command.

Now you can deploy your project (or run any other remote scripts) by running the build job and specifying a version number.