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

content.rb « config « chain « pipeline « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a8cd99b8e922ec763808ee78b7634e5cd4a12b08 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    module Pipeline
      module Chain
        module Config
          class Content < Chain::Base
            include Chain::Helpers

            def perform!
              return if @command.config_content

              if content = content_from_repo
                @command.config_content = content
                @pipeline.config_source = :repository_source
                # TODO: we should persist ci_config_path
                # @pipeline.config_path = ci_config_path
              elsif content = content_from_auto_devops
                @command.config_content = content
                @pipeline.config_source = :auto_devops_source
              end

              unless @command.config_content
                return error("Missing #{ci_config_path} file")
              end
            end

            def break?
              @pipeline.errors.any? || @pipeline.persisted?
            end

            private

            def content_from_repo
              return unless project
              return unless @pipeline.sha
              return unless ci_config_path

              project.repository.gitlab_ci_yml_for(@pipeline.sha, ci_config_path)
            rescue GRPC::NotFound, GRPC::Internal
              nil
            end

            def content_from_auto_devops
              return unless project&.auto_devops_enabled?

              Gitlab::Template::GitlabCiYmlTemplate.find('Auto-DevOps').content
            end

            def ci_config_path
              project.ci_config_path.presence || '.gitlab-ci.yml'
            end
          end
        end
      end
    end
  end
end