2015-09-22 08:04:14 -04:00
|
|
|
namespace :gitlab do
|
|
|
|
namespace :git do
|
|
|
|
|
|
|
|
desc "GitLab | Git | Repack"
|
|
|
|
task repack: :environment do
|
2015-10-01 07:34:41 -04:00
|
|
|
failures = perform_git_cmd(%W(git repack -a --quiet), "Repacking repo")
|
2015-09-22 08:04:14 -04:00
|
|
|
if failures.empty?
|
2016-06-01 18:37:15 -04:00
|
|
|
puts "Done".color(:green)
|
2015-09-22 08:04:14 -04:00
|
|
|
else
|
|
|
|
output_failures(failures)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-01 07:34:41 -04:00
|
|
|
desc "GitLab | Git | Run garbage collection on all repos"
|
2015-09-22 08:04:14 -04:00
|
|
|
task gc: :environment do
|
2015-10-01 07:34:41 -04:00
|
|
|
failures = perform_git_cmd(%W(git gc --auto --quiet), "Garbage Collecting")
|
2015-09-22 08:04:14 -04:00
|
|
|
if failures.empty?
|
2016-06-01 18:37:15 -04:00
|
|
|
puts "Done".color(:green)
|
2015-09-22 08:04:14 -04:00
|
|
|
else
|
|
|
|
output_failures(failures)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-01 07:34:41 -04:00
|
|
|
desc "GitLab | Git | Prune all repos"
|
2015-09-22 08:04:14 -04:00
|
|
|
task prune: :environment do
|
2015-10-01 07:34:41 -04:00
|
|
|
failures = perform_git_cmd(%W(git prune), "Git Prune")
|
2015-09-22 08:04:14 -04:00
|
|
|
if failures.empty?
|
2016-06-01 18:37:15 -04:00
|
|
|
puts "Done".color(:green)
|
2015-09-22 08:04:14 -04:00
|
|
|
else
|
|
|
|
output_failures(failures)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def perform_git_cmd(cmd, message)
|
|
|
|
puts "Starting #{message} on all repositories"
|
|
|
|
|
|
|
|
failures = []
|
2015-10-01 07:34:41 -04:00
|
|
|
all_repos do |repo|
|
|
|
|
if system(*cmd, chdir: repo)
|
|
|
|
puts "Performed #{message} at #{repo}"
|
|
|
|
else
|
|
|
|
failures << repo
|
|
|
|
end
|
2015-09-22 08:04:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
failures
|
|
|
|
end
|
|
|
|
|
|
|
|
def output_failures(failures)
|
2016-06-01 18:37:15 -04:00
|
|
|
puts "The following repositories reported errors:".color(:red)
|
2015-09-22 08:04:14 -04:00
|
|
|
failures.each { |f| puts "- #{f}" }
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|