debian-mirror-gitlab/lib/gitlab/ci/parsers.rb

25 lines
627 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
module Parsers
2019-12-04 20:38:33 +05:30
prepend_if_ee('::EE::Gitlab::Ci::Parsers') # rubocop: disable Cop/InjectEnterpriseEditionModule
2019-02-15 15:39:39 +05:30
ParserNotFoundError = Class.new(ParserError)
def self.parsers
{
2020-04-08 14:13:33 +05:30
junit: ::Gitlab::Ci::Parsers::Test::Junit,
cobertura: ::Gitlab::Ci::Parsers::Coverage::Cobertura
2019-02-15 15:39:39 +05:30
}
end
def self.fabricate!(file_type)
parsers.fetch(file_type.to_sym).new
rescue KeyError
raise ParserNotFoundError, "Cannot find any parser matching file type '#{file_type}'"
end
end
end
end