Skip to content

Instantly share code, notes, and snippets.

@stympy
Created December 12, 2011 21:27
Show Gist options
  • Save stympy/1469195 to your computer and use it in GitHub Desktop.
Save stympy/1469195 to your computer and use it in GitHub Desktop.
Skip asset pre-compilation when deploying if the assets didn't change
namespace :deploy do
namespace :assets do
task :precompile, :roles => :web, :except => { :no_release => true } do
from = source.next_revision(current_revision)
if capture("cd #{latest_release} && #{source.local.log(from)} vendor/assets/ app/assets/ | wc -l").to_i > 0
run %Q{cd #{latest_release} && #{rake} RAILS_ENV=#{rails_env} #{asset_env} assets:precompile}
else
logger.info "Skipping asset pre-compilation because there were no asset changes"
end
end
end
end
@stayhero
Copy link

Great, never had time to find out by myself how to do that. BTW: I had to remove vendor/assets path from line 5 because it doesn't exist in my repo, and git returns an error if path does not exist in repo.

@MaherSaif
Copy link

Thanks,

@webervin
Copy link

You also probably should check for Gemfile.lock, as some assets are provided by gems.

@smith
Copy link

smith commented Apr 11, 2012

This will fail on the first deploy because current_revision is not yet defined and the command capistrano uses to find current_revision will fail. You can add :on_error => :continue to the task definition and it won't fail, but it will skip it and you'll have to deploy twice on the first go in order to build you assets, which is still kind of hacky.

@olegykz
Copy link

olegykz commented Nov 15, 2012

Simple workaround for first deploy:
https://gist.github.com/4079213

@Martin91
Copy link

Hi all, is it essential to add lib/*/app/assets to my own list of locations to git log? Currently I have some gems downloaded, located under the /lib directory, and I sometimes need to edit their assets.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment