Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using capistrano to deploy a RoR application. The codebase is in a git repository, and branching is widely used in development. Capistrano uses deploy.rb file for it's settings, one of them being the branch to deploy from.

My problem is this: let's say I create a new branch A from master. The deploy file will reference master branch. I edit that, so A can be deployed to test environment. I finish working on the feature, and merge branch A into master. Since the deploy.rb file from A is fresher, it gets merged in and now the deploy.rb in master branch references A. Time to edit again.

That's a lot of seemingly unnecessary manual editing - the parameter should always match current branch name. On top of that, it is easy to forget to edit the settings each and every time.

What would be the best way to automate this process?

Edit:

Turns out someone already had done exactly what I needed.

share|improve this question

6 Answers

A better (shorter) solution is now available:

#call with cap -S env="<env>" branch="<branchname>" deploy

set :branch, fetch(:branch, "master")
set :env, fetch(:env, "production")
share|improve this answer
1  
If using mustistage extension, no need to set env, but this worked for me just using a branch – Tom Harrison Jr Aug 23 '12 at 21:59

Alternatively you could structure it from the command line where you have a default branch and environment and also you are able to pass parameters to the cap call which could include the environment and the branch to use. This could be a branch that is explicitly passed or you could have a parameter which would indicate current branch as described in the link you listed.

#call with cap -S env="<env>" branch="<branchname>" deploy
...

# Prevents error if not parameter passed, assumes that default 'cap deploy' command
# and should deploy the master branch to the production server
set(:env, ‘production’) unless exists?(:env)
set(:branch, ‘master’) unless exists?(:branch)

if !env.nil? && env == "production"
   role :web, "production_ip_address"
else   # add more as needed 
   role :web, "development_ip_address"
end

if !branch.nil? && branch == "current"
   set :branch, $1 if `git branch` =~ /\* (\S+)\s/m
elsif !branch.nil?
   set :branch, branch
else   # add more as needed 
   set :branch, "master"
end
...

Code example borrowed heavily from here

share|improve this answer
2  
I need to use lowercase -s in order for it to fetch the specified branch – lulalala Jun 11 '12 at 10:29

With multistage, it's actually now:

cap production deploy -s branch=my-branch

The previous post syntax does not work in my environment

share|improve this answer
-s branch=foo sets the capistrano variable branch to foo after the recipes are loaded – alvin Apr 23 at 17:56

If you're using capistrano-multistage, you only need to run

cap -s branch=$MY_BRANCH deploy

or

cap -s branch=$MY_BRANCH production deploy

without any further edit to your deploy.rb.

share|improve this answer
1  
That should be branch=, not branch-. – Jimothy May 1 at 21:51

General answer:

If you have a setting file with a content modified from environment to environment, you should make that line as a "template" (with a string representing variable name like @BRANCH_NAME@ or @ENV_NAME@).

Then you would have a (versioned) script able to read your config file, and replace the "@BRANCH_NAME@" variable by the appropriate value needed by your deployment process.

share|improve this answer

An alternative to this is:

In deploy.rb / stage.rb:

set :branch, ENV['BRANCH'] || 'develop'

On the command line:

cap deploy BRANCH=featurex

This gives you a default branch (which could be different for different environments), and the ability to change branches when you want.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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