summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-07-18 09:54:38 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-07-18 09:54:38 +0200
commit27e88efceb9d59affebf93be040b0a9b0bf31b2f (patch)
tree239c468f211e6bae49cf79250b4953efd1b4d324 /lib
parentbbda05863fa754c8f7302a577e91692ebd411a95 (diff)
downloadgitlab-ce-27e88efceb9d59affebf93be040b0a9b0bf31b2f.tar.gz
Move job image and services nodes to new CI config
Diffstat (limited to 'lib')
-rw-r--r--lib/ci/gitlab_ci_yaml_processor.rb8
-rw-r--r--lib/gitlab/ci/config/node/job.rb11
2 files changed, 10 insertions, 9 deletions
diff --git a/lib/ci/gitlab_ci_yaml_processor.rb b/lib/ci/gitlab_ci_yaml_processor.rb
index 0704e8f1683..b8d84de2dbe 100644
--- a/lib/ci/gitlab_ci_yaml_processor.rb
+++ b/lib/ci/gitlab_ci_yaml_processor.rb
@@ -120,14 +120,6 @@ module Ci
end
def validate_job_types!(name, job)
- if job[:image] && !validate_string(job[:image])
- raise ValidationError, "#{name} job: image should be a string"
- end
-
- if job[:services] && !validate_array_of_strings(job[:services])
- raise ValidationError, "#{name} job: services should be an array of strings"
- end
-
if job[:tags] && !validate_array_of_strings(job[:tags])
raise ValidationError, "#{name} job: tags parameter should be an array of strings"
end
diff --git a/lib/gitlab/ci/config/node/job.rb b/lib/gitlab/ci/config/node/job.rb
index 9280412a638..1c28969be14 100644
--- a/lib/gitlab/ci/config/node/job.rb
+++ b/lib/gitlab/ci/config/node/job.rb
@@ -32,7 +32,14 @@ module Gitlab
node :cache, Cache,
description: 'Cache definition for this job.'
- helpers :before_script, :script, :stage, :type, :after_script, :cache
+ 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.'
+
+ helpers :before_script, :script, :stage, :type, :after_script,
+ :cache, :image, :services
def name
@metadata[:name]
@@ -48,6 +55,8 @@ module Gitlab
{ name: name,
before_script: before_script,
script: script,
+ image: image,
+ services: services,
stage: stage,
cache: cache,
after_script: after_script }