debian-mirror-gitlab/lib/gitlab/ci/config/entry/include.rb

36 lines
977 B
Ruby
Raw Normal View History

2019-07-07 11:18:12 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
class Config
module Entry
##
# Entry that represents a single include.
#
class Include < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Validatable
2021-01-03 14:25:43 +05:30
ALLOWED_KEYS = %i[local file remote template artifact job project ref].freeze
2019-07-07 11:18:12 +05:30
validations do
validates :config, hash_or_string: true
validates :config, allowed_keys: ALLOWED_KEYS
2020-04-22 19:07:51 +05:30
validate do
next unless config.is_a?(Hash)
if config[:artifact] && config[:job].blank?
errors.add(:config, "must specify the job where to fetch the artifact from")
end
2021-01-03 14:25:43 +05:30
if config[:project] && config[:file].blank?
errors.add(:config, "must specify the file where to fetch the config from")
end
2020-04-22 19:07:51 +05:30
end
2019-07-07 11:18:12 +05:30
end
end
end
end
end
end