summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2016-08-05 13:53:43 +0800
committerLin Jen-Shin <godfat@godfat.org>2016-08-05 13:53:43 +0800
commitf88d4523f3e9523494a96c149c28796df8023e8d (patch)
tree660219e5be44eda476e113e826e19b1797f554b9
parent901536b36f3f5d95bd9ba33a2b99ef1c171c1133 (diff)
downloadgitlab-ce-f88d4523f3e9523494a96c149c28796df8023e8d.tar.gz
We still need to skip loading config_processor if skip_ci?
-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,