From c881425b665b9c0b022dc2e213486aecc320ec7e Mon Sep 17 00:00:00 2001 From: Grzegorz Bizon Date: Wed, 31 May 2017 14:40:50 +0200 Subject: Refine pipeline stages seeds class --- lib/ci/gitlab_ci_yaml_processor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ci') diff --git a/lib/ci/gitlab_ci_yaml_processor.rb b/lib/ci/gitlab_ci_yaml_processor.rb index aa6c94f26c8..5e6c3d029c6 100644 --- a/lib/ci/gitlab_ci_yaml_processor.rb +++ b/lib/ci/gitlab_ci_yaml_processor.rb @@ -51,7 +51,7 @@ module Ci end def stages_for_ref(ref, tag = false, trigger_request = nil) - stages = @stages.map do |stage| + stages = @stages.uniq.map do |stage| builds = builds_for_stage_and_ref(stage, ref, tag, trigger_request) { name: stage, builds_attributes: builds.to_a } if builds.any? -- cgit v1.2.3