trigger-build 6.8 KB
Newer Older
1
#!/usr/bin/env ruby
2
# frozen_string_literal: true
3

4 5 6 7 8 9
require 'gitlab'

#
# Configure credentials to be used with gitlab gem
#
Gitlab.configure do |config|
10
  config.endpoint = 'https://gitlab.com/api/v4'
11
end
12 13 14

module Trigger
  def self.ee?
15 16
    # Support former project name for `dev`
    %w[gitlab gitlab-ee].include?(ENV['CI_PROJECT_NAME'])
17 18
  end

19
  class Base
20
    def invoke!(post_comment: false, downstream_job_name: nil)
21 22
      pipeline = Gitlab.run_trigger(
        downstream_project_path,
23
        trigger_token,
24 25
        ref,
        variables)
26

27
      puts "Triggered downstream pipeline: #{pipeline.web_url}\n"
28
      puts "Waiting for downstream pipeline status"
29

30
      Trigger::CommitComment.post!(pipeline, access_token) if post_comment
31 32 33 34 35 36 37 38 39 40 41 42
      downstream_job =
        if downstream_job_name
          Gitlab.pipeline_jobs(downstream_project_path, pipeline.id).auto_paginate.find do |potential_job|
            potential_job.name == downstream_job_name
          end
        end

      if downstream_job
        Trigger::Job.new(downstream_project_path, downstream_job.id, access_token)
      else
        Trigger::Pipeline.new(downstream_project_path, pipeline.id, access_token)
      end
43 44 45 46
    end

    private

G
George Tsiolis 已提交
47
    # Must be overridden
48 49 50 51
    def downstream_project_path
      raise NotImplementedError
    end

G
George Tsiolis 已提交
52
    # Must be overridden
53 54 55 56
    def ref
      raise NotImplementedError
    end

G
George Tsiolis 已提交
57
    # Must be overridden
58 59 60 61
    def trigger_token
      raise NotImplementedError
    end

G
George Tsiolis 已提交
62
    # Must be overridden
63 64 65 66
    def access_token
      raise NotImplementedError
    end

G
George Tsiolis 已提交
67
    # Can be overridden
68 69 70 71
    def extra_variables
      {}
    end

G
George Tsiolis 已提交
72
    # Can be overridden
73 74 75 76 77 78 79 80 81
    def version_param_value(version_file)
      File.read(version_file).strip
    end

    def variables
      base_variables.merge(extra_variables).merge(version_file_variables)
    end

    def base_variables
82
      {
83
        'GITLAB_REF_SLUG' => ENV['CI_COMMIT_TAG'] ? ENV['CI_COMMIT_REF_NAME'] : ENV['CI_COMMIT_REF_SLUG'],
84
        'TRIGGERED_USER' => ENV['TRIGGERED_USER'] || ENV['GITLAB_USER_NAME'],
85 86 87 88
        'TRIGGER_SOURCE' => ENV['CI_JOB_URL'],
        'TOP_UPSTREAM_SOURCE_PROJECT' => ENV['CI_PROJECT_PATH'],
        'TOP_UPSTREAM_SOURCE_JOB' => ENV['CI_JOB_URL'],
        'TOP_UPSTREAM_SOURCE_SHA' => ENV['CI_COMMIT_SHA']
89 90 91
      }
    end

92 93 94 95
    # Read version files from all components
    def version_file_variables
      Dir.glob("*_VERSION").each_with_object({}) do |version_file, params|
        params[version_file] = version_param_value(version_file)
96 97 98 99
      end
    end
  end

100 101
  class Omnibus < Base
    private
102

103
    def downstream_project_path
104
      ENV['OMNIBUS_PROJECT_PATH'] || 'gitlab-org/build/omnibus-gitlab-mirror'
105 106
    end

107 108 109 110
    def ref
      ENV['OMNIBUS_BRANCH'] || 'master'
    end

111
    def trigger_token
112
      ENV['CI_JOB_TOKEN']
113 114 115 116 117 118
    end

    def access_token
      ENV['GITLAB_BOT_MULTI_PROJECT_PIPELINE_POLLING_TOKEN']
    end

119 120 121 122
    def extra_variables
      {
        'GITLAB_VERSION' => ENV['CI_COMMIT_SHA'],
        'ALTERNATIVE_SOURCES' => 'true',
123 124
        'ee' => Trigger.ee? ? 'true' : 'false',
        'QA_BRANCH' => ENV['QA_BRANCH'] || 'master'
125 126 127 128 129
      }
    end
  end

  class CNG < Base
130 131
    private

132 133 134 135 136
    def downstream_project_path
      ENV['CNG_PROJECT_PATH'] || 'gitlab-org/build/CNG-mirror'
    end

    def ref
137 138 139 140 141 142 143 144
      default_ref =
        if ENV['CI_COMMIT_REF_NAME'] =~ /^[\d-]+-stable(-ee)?$/
          ENV['CI_COMMIT_REF_NAME']
        else
          'master'
        end

      ENV['CNG_BRANCH'] || default_ref
145 146
    end

147 148 149 150 151 152 153 154
    def trigger_token
      ENV['BUILD_TRIGGER_TOKEN']
    end

    def access_token
      ENV['GITLAB_BOT_MULTI_PROJECT_PIPELINE_POLLING_TOKEN']
    end

155 156 157 158
    def extra_variables
      edition = Trigger.ee? ? 'EE' : 'CE'

      {
159
        # Back-compatibility until https://gitlab.com/gitlab-org/build/CNG/merge_requests/189 is merged
160
        "GITLAB_#{edition}_VERSION" => ENV['CI_COMMIT_REF_NAME'],
161
        "GITLAB_VERSION" => ENV['CI_COMMIT_REF_NAME'],
162
        "GITLAB_TAG" => ENV['CI_COMMIT_TAG'],
163
        "GITLAB_ASSETS_TAG" => ENV['CI_COMMIT_TAG'] ? ENV['CI_COMMIT_REF_NAME'] : ENV['CI_COMMIT_REF_SLUG'],
164
        "FORCE_RAILS_IMAGE_BUILDS" => 'true',
165
        "#{edition}_PIPELINE" => 'true'
166
      }
167
    end
168

169 170 171 172 173 174
    def version_param_value(_version_file)
      raw_version = super

      # if the version matches semver format, treat it as a tag and prepend `v`
      if raw_version =~ Regexp.compile(/^\d+\.\d+\.\d+(-rc\d+)?(-ee)?$/)
        "v#{raw_version}"
175
      else
176
        raw_version
177 178
      end
    end
179
  end
180

181
  class CommitComment
182 183 184
    def self.post!(downstream_pipeline, access_token)
      Gitlab.private_token = access_token

185 186 187 188
      Gitlab.create_commit_comment(
        ENV['CI_PROJECT_PATH'],
        ENV['CI_COMMIT_SHA'],
        "The [`#{ENV['CI_JOB_NAME']}`](#{ENV['CI_JOB_URL']}) job from pipeline #{ENV['CI_PIPELINE_URL']} triggered #{downstream_pipeline.web_url} downstream.")
189 190 191

    rescue Gitlab::Error::Error => error
      puts "Ignoring the following error: #{error}"
192 193 194 195 196 197 198
    end
  end

  class Pipeline
    INTERVAL = 60 # seconds
    MAX_DURATION = 3600 * 3 # 3 hours

199
    attr_reader :project, :id, :api_token
200

201 202 203 204 205 206 207 208
    def self.unscoped_class_name
      name.split('::').last
    end

    def self.gitlab_api_method_name
      unscoped_class_name.downcase
    end

209
    def initialize(project, id, api_token)
210 211
      @project = project
      @id = id
212
      @api_token = api_token
213
      @start = Time.now.to_i
214 215

      # gitlab-bot's token "GitLab multi-project pipeline polling"
216
      Gitlab.private_token = api_token
217 218 219 220
    end

    def wait!
      loop do
221
        raise "#{self.class.unscoped_class_name} timed out after waiting for #{duration} minutes!" if timeout?
222 223 224 225 226 227

        case status
        when :created, :pending, :running
          print "."
          sleep INTERVAL
        when :success
228
          puts "#{self.class.unscoped_class_name} succeeded in #{duration} minutes!"
229 230
          break
        else
231
          raise "#{self.class.unscoped_class_name} did not succeed!"
232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
        end

        STDOUT.flush
      end
    end

    def timeout?
      Time.now.to_i > (@start + MAX_DURATION)
    end

    def duration
      (Time.now.to_i - @start) / 60
    end

    def status
247
      Gitlab.public_send(self.class.gitlab_api_method_name, project, id).status.to_sym # rubocop:disable GitlabSecurity/PublicSend
248 249
    rescue Gitlab::Error::Error => error
      puts "Ignoring the following error: #{error}"
250 251 252
      # Ignore GitLab API hiccups. If GitLab is really down, we'll hit the job
      # timeout anyway.
      :running
253 254
    end
  end
255 256

  Job = Class.new(Pipeline)
257 258 259 260
end

case ARGV[0]
when 'omnibus'
261
  Trigger::Omnibus.new.invoke!(post_comment: true, downstream_job_name: 'Trigger:qa-test').wait!
262
when 'cng'
263
  Trigger::CNG.new.invoke!.wait!
264 265 266 267 268
else
  puts "Please provide a valid option:
  omnibus - Triggers a pipeline that builds the omnibus-gitlab package
  cng - Triggers a pipeline that builds images used by the GitLab helm chart"
end