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

40 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
checkout_or_clone_version(version: version, repo: args.repo, target_dir: args.dir)
2018-03-17 18:26:18 +05:30
command = %w[/usr/bin/env -u RUBYOPT -u BUNDLE_GEMFILE]
2017-08-17 22:00:37 +05:30
_, status = Gitlab::Popen.popen(%w[which gmake])
2018-03-17 18:26:18 +05:30
command << (status.zero? ? 'gmake' : 'make')
if Rails.env.test?
command.push(
'BUNDLE_FLAGS=--no-deployment',
"BUNDLE_PATH=#{Bundler.bundle_path}")
end
2017-08-17 22:00:37 +05:30
2018-11-20 20:47:30 +05:30
storage_paths = { 'default' => args.storage_path }
Gitlab::SetupHelper.create_gitaly_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?
2018-03-17 18:26:18 +05:30
Bundler.with_original_env { run_command!(command) }
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
end
end
end
end