capistrano3任务不保留gemfile

时间:2015-01-03 03:01:27

标签: ruby-on-rails-3 jenkins capistrano3 rvm-capistrano

我尝试使用rvm1-capistrano将Capistrano更新为v3并使用gemset运行错误。

Capfile的相关部分:

require 'rvm1/capistrano3'
#require 'capistrano/bundler'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'

我的deploy.rb看起来像:

set :rvm_type, :user
set :rvm_ruby_version, 'ruby-2.1.5'
set :rvm_ruby_gemset, 'ruby-2.1.5@json-webservice'
set :branch, ENV["BRANCH_NAME"] || ENV["TAG_NAME"] || "master"
set :pty, true

任何其他设置都是host,repo_url等。 rake资产:预编译任务因以下错误而失败,因为作业无法找到正确的gemset:

DEBUG[bc474425] Command: cd /home/user/www/server-test/releases/20150103023617 && ( RAILS_ENV=stevedev /home/usr/www/mdm-server-test/rvm1scripts/rvm-auto.sh . rake assets:precompile )
DEBUG[bc474425]     git@github.com:customgem/customgem.git (at 745-capistrano-3-upgrade) is not yet checked out. Run `bundle install` first.

Gemfile在主要部分指定gem(一个定制的引擎):

gem "customgem", :git => 'git@github.com:customgem/customget.git', :branch => '745-capistrano-3-upgrade'

我手动在远程服务器上运行bundle install所以我知道gemset实际上是在远程服务器上。

我已经运行cap customenv rvm1:check并收到以下输出:

DEBUG[bad87e27] Finished in 1.862 seconds with exit status 0 (successful).
ruby 2.1.5p273 (2014-11-13 revision 48405) [x86_64-linux]

所以看来capistrano工作确实有正确的设置。

是否有一个我未设置的变量?

1 个答案:

答案 0 :(得分:-1)

https://github.com/rvm/rvm1-capistrano3/issues/6#issuecomment-29296421

此线程中的代码通过添加此自定义上限任务为我工作:

set :bundle_without, %w{development test}.join(' ')
set :bundle_roles, :all
namespace :bundler do
  desc "Install gems with bundler."
  task :install do
    on roles fetch(:bundle_roles) do
      within release_path do
        execute :bundle, "install", "--without #{fetch(:bundle_without)}"
      end
    end
  end
end
before 'deploy:updated', 'bundler:install'