Relax CI version check during import
This commit is contained in:
parent
25c7467ce1
commit
e0823d189f
1 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,8 @@
|
|||
module Ci
|
||||
module Migrate
|
||||
class Manager
|
||||
CI_IMPORT_PREFIX = '8.0' # Only allow imports from CI 8.0.x
|
||||
|
||||
def cleanup
|
||||
$progress.print "Deleting tmp directories ... "
|
||||
|
||||
|
@ -48,7 +50,7 @@ module Ci
|
|||
ENV["VERSION"] = "#{settings[:db_version]}" if settings[:db_version].to_i > 0
|
||||
|
||||
# restoring mismatching backups can lead to unexpected problems
|
||||
if settings[:gitlab_version] != GitlabCi::VERSION
|
||||
if !settings[:gitlab_version].start_with?(CI_IMPORT_PREFIX)
|
||||
puts "GitLab CI version mismatch:".red
|
||||
puts " Your current GitLab CI version (#{GitlabCi::VERSION}) differs from the GitLab CI (#{settings[:gitlab_version]}) version in the backup!".red
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue