debian-mirror-gitlab/lib/tasks/gitlab/gitaly.rake

39 lines
1.4 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
namespace :gitlab do
namespace :gitaly do
2020-03-13 15:44:24 +05:30
desc 'GitLab | Gitaly | Install or upgrade gitaly'
2018-11-20 20:47:30 +05:30
task :install, [:dir, :storage_path, :repo] => :gitlab_environment do |t, args|
2017-08-17 22:00:37 +05:30
warn_user_is_not_gitlab
2018-03-17 18:26:18 +05:30
2018-11-20 20:47:30 +05:30
unless args.dir.present? && args.storage_path.present?
abort %(Please specify the directory where you want to install gitaly and the path for the default storage
Usage: rake "gitlab:gitaly:install[/installation/dir,/storage/path]")
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
2017-08-17 22:00:37 +05:30
args.with_defaults(repo: 'https://gitlab.com/gitlab-org/gitaly.git')
version = Gitlab::GitalyClient.expected_server_version
2020-05-24 23:13:21 +05:30
checkout_or_clone_version(version: version, repo: args.repo, target_dir: args.dir, clone_opts: %w[--depth 1])
2018-03-17 18:26:18 +05:30
2020-05-24 23:13:21 +05:30
command = []
2017-08-17 22:00:37 +05:30
_, status = Gitlab::Popen.popen(%w[which gmake])
2020-10-24 23:57:45 +05:30
command << (status == 0 ? 'gmake' : 'make')
2018-03-17 18:26:18 +05:30
if Rails.env.test?
command.push(
'BUNDLE_FLAGS=--no-deployment',
2021-01-29 00:20:46 +05:30
"GEM_HOME=#{Bundler.bundle_path}")
2018-03-17 18:26:18 +05:30
end
2017-08-17 22:00:37 +05:30
2018-11-20 20:47:30 +05:30
storage_paths = { 'default' => args.storage_path }
2020-04-22 19:07:51 +05:30
Gitlab::SetupHelper::Gitaly.create_configuration(args.dir, storage_paths)
2017-08-17 22:00:37 +05:30
Dir.chdir(args.dir) do
2017-09-10 17:25:29 +05:30
# In CI we run scripts/gitaly-test-build instead of this command
unless ENV['CI'].present?
2020-05-24 23:13:21 +05:30
Bundler.with_original_env { Gitlab::Popen.popen(command, nil, { "RUBYOPT" => nil, "BUNDLE_GEMFILE" => nil }) }
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
end
end
end
end