debian-mirror-gitlab/lib/gitlab/ci/config/yaml.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
954 B
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
class Config
module Yaml
AVAILABLE_TAGS = [Config::Yaml::Tags::Reference].freeze
2023-04-23 21:23:45 +05:30
MAX_DOCUMENTS = 2
2021-03-11 19:13:27 +05:30
class << self
def load!(content)
ensure_custom_tags
2023-04-23 21:23:45 +05:30
if ::Feature.enabled?(:ci_multi_doc_yaml)
Gitlab::Config::Loader::MultiDocYaml.new(
content,
max_documents: MAX_DOCUMENTS,
additional_permitted_classes: AVAILABLE_TAGS
).load!.first
else
Gitlab::Config::Loader::Yaml.new(content, additional_permitted_classes: AVAILABLE_TAGS).load!
end
2021-03-11 19:13:27 +05:30
end
private
def ensure_custom_tags
@ensure_custom_tags ||= begin
AVAILABLE_TAGS.each { |klass| Psych.add_tag(klass.tag, klass) }
true
end
end
end
end
end
end
end