3149b5cfea
CE mirror of 4f17c7b2c30188302e6a73421acbf5a09fb2c823
25 lines
629 B
Ruby
25 lines
629 B
Ruby
# frozen_string_literal: true
|
|
|
|
module BlobViewer
|
|
class GitlabCiYml < Base
|
|
include ServerSide
|
|
include Auxiliary
|
|
|
|
self.partial_name = 'gitlab_ci_yml'
|
|
self.loading_partial_name = 'gitlab_ci_yml_loading'
|
|
self.file_types = %i(gitlab_ci)
|
|
self.binary = false
|
|
|
|
def validation_message(project, ref)
|
|
return @validation_message if defined?(@validation_message)
|
|
|
|
prepare!
|
|
|
|
@validation_message = Gitlab::Ci::YamlProcessor.validation_message(blob.data, { project: project, branch_name: ref })
|
|
end
|
|
|
|
def valid?(project, ref)
|
|
validation_message(project, ref).blank?
|
|
end
|
|
end
|
|
end
|