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:
authorLin Jen-Shin <godfat@godfat.org>2016-08-05 08:53:43 +0300
committerLin Jen-Shin <godfat@godfat.org>2016-08-05 08:53:43 +0300
commitf88d4523f3e9523494a96c149c28796df8023e8d (patch)
tree660219e5be44eda476e113e826e19b1797f554b9 /lib/gitlab/data_builder
parent901536b36f3f5d95bd9ba33a2b99ef1c171c1133 (diff)
We still need to skip loading config_processor if skip_ci?
Diffstat (limited to 'lib/gitlab/data_builder')
-rw-r--r--lib/gitlab/data_builder/pipeline_data_builder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/data_builder/pipeline_data_builder.rb b/lib/gitlab/data_builder/pipeline_data_builder.rb
index 13417ba09eb..a4c770b630f 100644
--- a/lib/gitlab/data_builder/pipeline_data_builder.rb
+++ b/lib/gitlab/data_builder/pipeline_data_builder.rb
@@ -16,7 +16,7 @@ module Gitlab
def hook_attrs(pipeline)
first_pending_build = pipeline.builds.first_pending
- config_processor = pipeline.config_processor
+ config_processor = pipeline.config_processor unless pipeline.skip_ci?
{
id: pipeline.id,