debian-mirror-gitlab/app/models/concerns/ci/processable.rb

32 lines
566 B
Ruby
Raw Normal View History

2019-03-02 22:35:43 +05:30
# frozen_string_literal: true
module Ci
##
# This module implements methods that need to be implemented by CI/CD
# entities that are supposed to go through pipeline processing
# services.
#
#
module Processable
def schedulable?
raise NotImplementedError
end
def action?
raise NotImplementedError
end
def when
read_attribute(:when) || 'on_success'
end
def expanded_environment_name
raise NotImplementedError
end
2019-07-07 11:18:12 +05:30
def scoped_variables_hash
raise NotImplementedError
end
2019-03-02 22:35:43 +05:30
end
end