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

repository.rb « content « 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: 0752b099d3daabea8e97ee549e71d19cf77b3282 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    module Pipeline
      module Chain
        module Config
          class Content
            class Repository < Source
              def content
                strong_memoize(:content) do
                  next unless file_in_repository?

                  YAML.dump('include' => [{ 'local' => ci_config_path }])
                end
              end

              def source
                :repository_source
              end

              private

              def file_in_repository?
                return unless project
                return unless @pipeline.sha

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