Commit c387f004 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Resolve CI/CD pipeline related merge conflicts

parent 56ae4a9a
......@@ -6,11 +6,8 @@ module Ci
include AfterCommitQueue
include Presentable
include Gitlab::OptimisticLocking
<<<<<<< HEAD
prepend ::EE::Ci::Pipeline
=======
>>>>>>> ce-com/master
belongs_to :project
belongs_to :user
......@@ -78,11 +75,7 @@ module Ci
enum failure_reason: {
unknown_failure: 0,
config_error: 1
<<<<<<< HEAD
}.merge(EE_FAILURE_REASONS)
=======
}
>>>>>>> ce-com/master
state_machine :status, initial: :created do
event :enqueue do
......
module Ci
class PipelinePresenter < Gitlab::View::Presenter::Delegated
<<<<<<< HEAD
prepend ::EE::Ci::PipelinePresenter
FAILURE_REASONS = {
config_error: 'CI/CD YAML configuration error!'
}.merge(EE_FAILURE_REASONS)
=======
FAILURE_REASONS = {
config_error: 'CI/CD YAML configuration error!'
}.freeze
>>>>>>> ce-com/master
presents :pipeline
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment