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

62 lines
1.8 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2016-08-24 12:49:21 +05:30
module Gitlab
module Ci
class Config
2017-08-17 22:00:37 +05:30
module Entry
2016-08-24 12:49:21 +05:30
##
# Entry that represents a cache configuration
#
2019-02-15 15:39:39 +05:30
class Cache < ::Gitlab::Config::Entry::Node
include ::Gitlab::Config::Entry::Configurable
2021-01-03 14:25:43 +05:30
include ::Gitlab::Config::Entry::Validatable
2019-02-15 15:39:39 +05:30
include ::Gitlab::Config::Entry::Attributable
2016-08-24 12:49:21 +05:30
2021-01-03 14:25:43 +05:30
ALLOWED_KEYS = %i[key untracked paths when policy].freeze
ALLOWED_POLICY = %w[pull-push push pull].freeze
2019-12-04 20:38:33 +05:30
DEFAULT_POLICY = 'pull-push'
2021-01-03 14:25:43 +05:30
ALLOWED_WHEN = %w[on_success on_failure always].freeze
DEFAULT_WHEN = 'on_success'
2016-09-13 17:45:13 +05:30
validations do
2021-01-03 14:25:43 +05:30
validates :config, type: Hash, allowed_keys: ALLOWED_KEYS
validates :policy,
inclusion: { in: ALLOWED_POLICY, message: 'should be pull-push, push, or pull' },
allow_blank: true
with_options allow_nil: true do
validates :when,
inclusion: {
in: ALLOWED_WHEN,
message: 'should be on_success, on_failure or always'
}
end
2016-09-13 17:45:13 +05:30
end
2017-08-17 22:00:37 +05:30
entry :key, Entry::Key,
2016-08-24 12:49:21 +05:30
description: 'Cache key used to define a cache affinity.'
2019-02-15 15:39:39 +05:30
entry :untracked, ::Gitlab::Config::Entry::Boolean,
2016-08-24 12:49:21 +05:30
description: 'Cache all untracked files.'
2017-08-17 22:00:37 +05:30
entry :paths, Entry::Paths,
2016-08-24 12:49:21 +05:30
description: 'Specify which paths should be cached across builds.'
2017-08-17 22:00:37 +05:30
2021-01-03 14:25:43 +05:30
attributes :policy, :when
2017-09-10 17:25:29 +05:30
2017-08-17 22:00:37 +05:30
def value
2017-09-10 17:25:29 +05:30
result = super
result[:key] = key_value
result[:policy] = policy || DEFAULT_POLICY
2021-01-03 14:25:43 +05:30
# Use self.when to avoid conflict with reserved word
result[:when] = self.when || DEFAULT_WHEN
2017-09-10 17:25:29 +05:30
result
2017-08-17 22:00:37 +05:30
end
2016-08-24 12:49:21 +05:30
end
end
end
end
end