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

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

module Gitlab
  module Ci
    class ProjectConfig
      class Repository < Source
        extend ::Gitlab::Utils::Override

        def content
          strong_memoize(:content) do
            next unless file_in_repository?

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

        def internal_include_prepended?
          true
        end

        def source
          :repository_source
        end

        override :url
        def url
          File.join(Settings.build_ci_component_fqdn, project.full_path, '//', ci_config_path)
        end

        private

        def file_in_repository?
          return unless project
          return unless sha

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