debian-mirror-gitlab/lib/gitlab/ci/pipeline/chain/base.rb
2022-01-26 12:08:38 +05:30

28 lines
564 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, :logger, 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