124 lines
3.8 KiB
Ruby
124 lines
3.8 KiB
Ruby
|
module Gitlab
|
||
|
module Ci
|
||
|
class Config
|
||
|
module Node
|
||
|
##
|
||
|
# Entry that represents a concrete CI/CD job.
|
||
|
#
|
||
|
class Job < Entry
|
||
|
include Configurable
|
||
|
include Attributable
|
||
|
|
||
|
ALLOWED_KEYS = %i[tags script only except type image services allow_failure
|
||
|
type stage when artifacts cache dependencies before_script
|
||
|
after_script variables environment]
|
||
|
|
||
|
attributes :tags, :allow_failure, :when, :environment, :dependencies
|
||
|
|
||
|
validations do
|
||
|
validates :config, allowed_keys: ALLOWED_KEYS
|
||
|
|
||
|
validates :config, presence: true
|
||
|
validates :name, presence: true
|
||
|
validates :name, type: Symbol
|
||
|
|
||
|
with_options allow_nil: true do
|
||
|
validates :tags, array_of_strings: true
|
||
|
validates :allow_failure, boolean: true
|
||
|
validates :when,
|
||
|
inclusion: { in: %w[on_success on_failure always manual],
|
||
|
message: 'should be on_success, on_failure, ' \
|
||
|
'always or manual' }
|
||
|
validates :environment,
|
||
|
type: {
|
||
|
with: String,
|
||
|
message: Gitlab::Regex.environment_name_regex_message }
|
||
|
validates :environment,
|
||
|
format: {
|
||
|
with: Gitlab::Regex.environment_name_regex,
|
||
|
message: Gitlab::Regex.environment_name_regex_message }
|
||
|
|
||
|
validates :dependencies, array_of_strings: true
|
||
|
end
|
||
|
end
|
||
|
|
||
|
node :before_script, Script,
|
||
|
description: 'Global before script overridden in this job.'
|
||
|
|
||
|
node :script, Commands,
|
||
|
description: 'Commands that will be executed in this job.'
|
||
|
|
||
|
node :stage, Stage,
|
||
|
description: 'Pipeline stage this job will be executed into.'
|
||
|
|
||
|
node :type, Stage,
|
||
|
description: 'Deprecated: stage this job will be executed into.'
|
||
|
|
||
|
node :after_script, Script,
|
||
|
description: 'Commands that will be executed when finishing job.'
|
||
|
|
||
|
node :cache, Cache,
|
||
|
description: 'Cache definition for this job.'
|
||
|
|
||
|
node :image, Image,
|
||
|
description: 'Image that will be used to execute this job.'
|
||
|
|
||
|
node :services, Services,
|
||
|
description: 'Services that will be used to execute this job.'
|
||
|
|
||
|
node :only, Trigger,
|
||
|
description: 'Refs policy this job will be executed for.'
|
||
|
|
||
|
node :except, Trigger,
|
||
|
description: 'Refs policy this job will be executed for.'
|
||
|
|
||
|
node :variables, Variables,
|
||
|
description: 'Environment variables available for this job.'
|
||
|
|
||
|
node :artifacts, Artifacts,
|
||
|
description: 'Artifacts configuration for this job.'
|
||
|
|
||
|
helpers :before_script, :script, :stage, :type, :after_script,
|
||
|
:cache, :image, :services, :only, :except, :variables,
|
||
|
:artifacts
|
||
|
|
||
|
def name
|
||
|
@metadata[:name]
|
||
|
end
|
||
|
|
||
|
def value
|
||
|
@config.merge(to_hash.compact)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def to_hash
|
||
|
{ name: name,
|
||
|
before_script: before_script,
|
||
|
script: script,
|
||
|
image: image,
|
||
|
services: services,
|
||
|
stage: stage,
|
||
|
cache: cache,
|
||
|
only: only,
|
||
|
except: except,
|
||
|
variables: variables_defined? ? variables : nil,
|
||
|
artifacts: artifacts,
|
||
|
after_script: after_script }
|
||
|
end
|
||
|
|
||
|
def compose!
|
||
|
super
|
||
|
|
||
|
if type_defined? && !stage_defined?
|
||
|
@entries[:stage] = @entries[:type]
|
||
|
end
|
||
|
|
||
|
@entries.delete(:type)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|