55 lines
1.4 KiB
Ruby
55 lines
1.4 KiB
Ruby
namespace :gitlab do
|
|
namespace :git do
|
|
|
|
desc "GitLab | Git | Repack"
|
|
task repack: :environment do
|
|
failures = perform_git_cmd(%W(#{Gitlab.config.git.bin_path} repack -a --quiet), "Repacking repo")
|
|
if failures.empty?
|
|
puts "Done".color(:green)
|
|
else
|
|
output_failures(failures)
|
|
end
|
|
end
|
|
|
|
desc "GitLab | Git | Run garbage collection on all repos"
|
|
task gc: :environment do
|
|
failures = perform_git_cmd(%W(#{Gitlab.config.git.bin_path} gc --auto --quiet), "Garbage Collecting")
|
|
if failures.empty?
|
|
puts "Done".color(:green)
|
|
else
|
|
output_failures(failures)
|
|
end
|
|
end
|
|
|
|
desc "GitLab | Git | Prune all repos"
|
|
task prune: :environment do
|
|
failures = perform_git_cmd(%W(#{Gitlab.config.git.bin_path} prune), "Git Prune")
|
|
if failures.empty?
|
|
puts "Done".color(:green)
|
|
else
|
|
output_failures(failures)
|
|
end
|
|
end
|
|
|
|
def perform_git_cmd(cmd, message)
|
|
puts "Starting #{message} on all repositories"
|
|
|
|
failures = []
|
|
all_repos do |repo|
|
|
if system(*cmd, chdir: repo)
|
|
puts "Performed #{message} at #{repo}"
|
|
else
|
|
failures << repo
|
|
end
|
|
end
|
|
|
|
failures
|
|
end
|
|
|
|
def output_failures(failures)
|
|
puts "The following repositories reported errors:".color(:red)
|
|
failures.each { |f| puts "- #{f}" }
|
|
end
|
|
|
|
end
|
|
end
|