Merge pull request #4458 from consul/install_rvm

Speed up deployment when Ruby is already installed
This commit is contained in:
Javi Martín
2021-04-14 14:02:53 +02:00
committed by GitHub

View File

@@ -39,8 +39,7 @@ namespace :deploy do
Rake::Task["delayed_job:default"].clear_actions
Rake::Task["puma:smart_restart"].clear_actions
after :updating, "rvm1:install:rvm"
after :updating, "rvm1:install:ruby"
after :updating, "install_ruby"
after "deploy:migrate", "add_new_settings"
@@ -60,6 +59,26 @@ namespace :deploy do
end
end
task :install_ruby do
on roles(:app) do
within release_path do
begin
current_ruby = capture(:rvm, "current")
rescue SSHKit::Command::Failed
after "install_ruby", "rvm1:install:rvm"
after "install_ruby", "rvm1:install:ruby"
else
if current_ruby.include?("not installed")
after "install_ruby", "rvm1:install:rvm"
after "install_ruby", "rvm1:install:ruby"
else
info "Ruby: Using #{current_ruby}"
end
end
end
end
end
task :refresh_sitemap do
on roles(:app) do
within release_path do