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

36 lines
1,016 B
Ruby
Raw Normal View History

2016-09-13 17:45:13 +05:30
module Gitlab
module Ci
class Config
2017-08-17 22:00:37 +05:30
module Entry
2016-09-13 17:45:13 +05:30
##
# Entry that represents a configuration of job artifacts.
#
2017-08-17 22:00:37 +05:30
class Artifacts < Node
2016-09-13 17:45:13 +05:30
include Validatable
include Attributable
2017-08-17 22:00:37 +05:30
ALLOWED_KEYS = %i[name untracked paths when expire_in].freeze
2016-09-13 17:45:13 +05:30
attributes ALLOWED_KEYS
validations do
validates :config, type: Hash
validates :config, allowed_keys: ALLOWED_KEYS
with_options allow_nil: true do
validates :name, type: String
validates :untracked, boolean: true
validates :paths, array_of_strings: true
validates :when,
inclusion: { in: %w[on_success on_failure always],
message: 'should be on_success, on_failure ' \
'or always' }
validates :expire_in, duration: true
end
end
end
end
end
end
end