Welcome to mirror list, hosted at ThFree Co, Russian Federation.

builds.rb « migrate « ci « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdc143cfad5592654e5542f44158a8d3895bc460 (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
module Ci
  module Migrate
    class Builds
      attr_reader :app_builds_dir, :backup_builds_tarball, :backup_dir

      def initialize
        @app_builds_dir = Settings.gitlab_ci.builds_path
        @backup_dir = Gitlab.config.backup.path
        @backup_builds_tarball = File.join(backup_dir, 'builds/builds.tar.gz')
      end

      def restore
        backup_existing_builds_dir

        FileUtils.mkdir_p(app_builds_dir, mode: 0700)
        unless system('tar', '-C', app_builds_dir, '-zxvf', backup_builds_tarball)
          abort 'Restore failed'.red
        end
      end

      def backup_existing_builds_dir
        timestamped_builds_path = File.join(app_builds_dir, '..', "builds.#{Time.now.to_i}")
        if File.exists?(app_builds_dir)
          FileUtils.mv(app_builds_dir, File.expand_path(timestamped_builds_path))
        end
      end
    end
  end
end