Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/config/entry/need.rb')
-rw-r--r--lib/gitlab/ci/config/entry/need.rb20
1 files changed, 15 insertions, 5 deletions
diff --git a/lib/gitlab/ci/config/entry/need.rb b/lib/gitlab/ci/config/entry/need.rb
index f1b67635c08..cf727134f32 100644
--- a/lib/gitlab/ci/config/entry/need.rb
+++ b/lib/gitlab/ci/config/entry/need.rb
@@ -42,11 +42,15 @@ module Gitlab
end
class JobHash < ::Gitlab::Config::Entry::Node
- include ::Gitlab::Config::Entry::Validatable
include ::Gitlab::Config::Entry::Attributable
+ include ::Gitlab::Config::Entry::Configurable
+
+ ALLOWED_KEYS = %i[job artifacts optional parallel].freeze
+ attributes :job, :artifacts, :optional, :parallel
- ALLOWED_KEYS = %i[job artifacts optional].freeze
- attributes :job, :artifacts, :optional
+ entry :parallel, Entry::Product::Parallel,
+ description: 'Parallel needs configuration for this job',
+ inherit: true
validations do
validates :config, presence: true
@@ -61,9 +65,15 @@ module Gitlab
end
def value
- { name: job,
+ result = {
+ name: job,
artifacts: artifacts || artifacts.nil?,
- optional: !!optional }
+ optional: !!optional
+ }
+
+ result[:parallel] = parallel_value if has_parallel?
+
+ result
end
end