summaryrefslogtreecommitdiff
path: root/lib/tasks/gitlab/dev.rake
blob: 47bdb2d32d29dd917b15346b1be9917eede25ae6 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
namespace :gitlab do
  namespace :dev do
    desc 'Checks if the branch would apply cleanly to EE'
    task ce_to_ee_merge_check: :environment do
      return if defined?(Gitlab::License)
      return unless ENV['CI']

      ce_repo = ENV['CI_BUILD_REPO']
      ce_branch = ENV['CI_BUILD_REF_NAME']

      ee_repo = 'https://gitlab.com/gitlab-org/gitlab-ee.git'
      ee_branch = "#{ce_branch}-ee"
      ee_dir = 'gitlab-ee-merge-check'

      puts "\n=> Cloning #{ee_repo} into #{ee_dir}\n"
      `git clone #{ee_repo} #{ee_dir} --depth 1`
      Dir.chdir(ee_dir) do
        puts "\n => Fetching #{ce_repo}/#{ce_branch}\n"
        `git fetch #{ce_repo} #{ce_branch} --depth 1`

        # Try to merge the current tested branch to EE/master...
        puts "\n => Merging #{ce_repo}/#{ce_branch} into #{ee_repo}/master\n"
        `git merge FETCH_HEAD`

        exit 0 if $?.success?

        # Check if the <branch>-ee branch exists...
        puts "\n => Check if #{ee_repo}/#{ee_branch} exists\n"
        `git rev-parse --verify #{ee_branch}`

        # The <branch>-ee doesn't exist
        unless $?.success?
          puts
          puts <<-MSG.strip_heredoc
            =================================================================
            The #{ce_branch} branch cannot be merged without conflicts to the
            current EE/master, and no #{ee_branch} branch was detected in
            the EE repository.

            Please create a #{ee_branch} branch that includes changes from
            #{ce_branch} but also specific changes than can be applied cleanly
            to EE/master.

            You can create this branch as follows:

            1. In the EE repo:
              $ git fetch origin
              $ git fetch #{ce_repo} #{ce_branch}
              $ git checkout -b #{ee_branch} FETCH_HEAD
              $ git rebase origin/master
            2. At this point you will likely have conflicts, solve them, and
              continue/finish the rebase. Note: You can squash the CE commits
              before rebasing.
            3. You can squash all the original #{ce_branch} commits into a
              single "Port of #{ce_branch} to EE".
            4. Push your branch to #{ee_repo}:
              $ git push origin #{ee_branch}
            =================================================================\n
          MSG

          exit 1
        end

        # Try to merge the <branch>-ee branch to EE/master...
        puts "\n => Merging #{ee_repo}/#{ee_branch} into #{ee_repo}/master\n"
        `git merge #{ee_branch} master`

        # The <branch>-ee cannot be merged cleanly to EE/master...
        unless $?.success?
          puts
          puts <<-MSG.strip_heredoc
            =================================================================
            The #{ce_branch} branch cannot be merged without conflicts to
            EE/master, and even though the #{ee_branch} branch exists in the EE
            repository, it cannot be merged without conflicts to EE/master.

            Please update the #{ee_branch}, push it again to #{ee_repo}, and
            retry this job.
            =================================================================\n
          MSG

          exit 2
        end

        puts "\n => Merging #{ce_repo}/#{ce_branch} into #{ee_repo}/master\n"
        `git merge FETCH_HEAD`
        exit 0 if $?.success?

        # The <branch>-ee can be merged cleanly to EE/master, but <branch> still
        # cannot be merged cleanly to EE/master...
        puts
        puts <<-MSG.strip_heredoc
          =================================================================
          The #{ce_branch} branch cannot be merged without conflicts to EE, and
          even though the #{ee_branch} branch exists in the EE repository and
          applies cleanly to EE/master, it doesn't prevent conflicts when
          merging #{ce_branch} into EE.

          We may be in a complex situation here.
          =================================================================\n
        MSG

        exit 3
      end
    end
  end
end