debian-mirror-gitlab/lib/gitlab/ci/pipeline/chain/base.rb
2020-04-08 14:13:33 +05:30

28 lines
555 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
module Chain
class Base
attr_reader :pipeline, :command, :config
delegate :project, :current_user, :parent_pipeline, to: :command
def initialize(pipeline, command)
@pipeline = pipeline
@command = command
end
def perform!
raise NotImplementedError
end
def break?
raise NotImplementedError
end
end
end
end
end
end