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

parameter.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: 3dd216b33d12e2a72491f867af9f0173764005e3 (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
# frozen_string_literal: true

module Gitlab
  module Ci
    module Pipeline
      module Chain
        module Config
          class Content
            class Parameter < Source
              UnsupportedSourceError = Class.new(StandardError)

              def content
                strong_memoize(:content) do
                  next unless command.content.present?
                  raise UnsupportedSourceError, "#{command.source} not a dangling build" unless command.dangling_build?

                  command.content
                end
              end

              def source
                :parameter_source
              end
            end
          end
        end
      end
    end
  end
end