28 lines
688 B
Ruby
28 lines
688 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Status
|
|
module Build
|
|
class Preparing < Status::Extended
|
|
##
|
|
# TODO: image is shared with 'pending'
|
|
# until we get a dedicated one
|
|
#
|
|
def illustration
|
|
{
|
|
image: 'illustrations/job_not_triggered.svg',
|
|
size: 'svg-306',
|
|
title: _('This job is preparing to start'),
|
|
content: _('This job is performing tasks that must complete before it can start')
|
|
}
|
|
end
|
|
|
|
def self.matches?(build, _)
|
|
build.preparing?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|