2016-08-24 12:49:21 +05:30
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
class Config
|
|
|
|
module Node
|
|
|
|
##
|
|
|
|
# Entry that represents a cache configuration
|
|
|
|
#
|
|
|
|
class Cache < Entry
|
|
|
|
include Configurable
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
ALLOWED_KEYS = %i[key untracked paths]
|
|
|
|
|
|
|
|
validations do
|
|
|
|
validates :config, allowed_keys: ALLOWED_KEYS
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
node :key, Node::Key,
|
|
|
|
description: 'Cache key used to define a cache affinity.'
|
|
|
|
|
|
|
|
node :untracked, Node::Boolean,
|
|
|
|
description: 'Cache all untracked files.'
|
|
|
|
|
|
|
|
node :paths, Node::Paths,
|
|
|
|
description: 'Specify which paths should be cached across builds.'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|