summaryrefslogtreecommitdiff
path: root/lib/system_check/app/git_version_check.rb
blob: 08c8df9b04475f23e40ad52b1987e592ac03e0c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# frozen_string_literal: true

module SystemCheck
  module App
    class GitVersionCheck < SystemCheck::BaseCheck
      set_name -> { "Git version >= #{self.required_version} ?" }
      set_check_pass -> { "yes (#{self.current_version})" }

      def self.required_version
        @required_version ||= Gitlab::VersionInfo.parse('2.22.0')
      end

      def self.current_version
        @current_version ||= Gitlab::VersionInfo.parse(Gitlab::TaskHelpers.run_command(%W(#{Gitlab.config.git.bin_path} --version)))
      end

      def check?
        self.class.current_version.valid? && self.class.required_version <= self.class.current_version
      end

      def show_error
        $stdout.puts "Your git bin path is \"#{Gitlab.config.git.bin_path}\""

        try_fixing_it(
          "Update your git to a version >= #{self.class.required_version} from #{self.class.current_version}"
        )
        fix_and_rerun
      end
    end
  end
end