2015-10-06 06:01:16 -04:00
|
|
|
class CommitStatus < ActiveRecord::Base
|
2016-04-16 15:46:26 -04:00
|
|
|
include Statuseable
|
2016-06-13 07:34:36 -04:00
|
|
|
include Importable
|
2016-03-31 13:51:28 -04:00
|
|
|
|
2015-10-06 06:01:16 -04:00
|
|
|
self.table_name = 'ci_builds'
|
|
|
|
|
2015-12-04 06:55:23 -05:00
|
|
|
belongs_to :project, class_name: '::Project', foreign_key: :gl_project_id
|
2016-06-02 10:19:18 -04:00
|
|
|
belongs_to :pipeline, class_name: 'Ci::Pipeline', foreign_key: :commit_id, touch: true
|
2015-10-06 06:01:16 -04:00
|
|
|
belongs_to :user
|
|
|
|
|
2016-06-21 08:43:37 -04:00
|
|
|
delegate :commit, to: :pipeline
|
|
|
|
|
2016-06-13 07:34:36 -04:00
|
|
|
validates :pipeline, presence: true, unless: :importing?
|
2015-10-06 06:01:16 -04:00
|
|
|
|
|
|
|
validates_presence_of :name
|
|
|
|
|
2015-10-12 06:15:48 -04:00
|
|
|
alias_attribute :author, :user
|
|
|
|
|
2016-07-20 13:10:08 -04:00
|
|
|
scope :latest, -> do
|
|
|
|
max_id = unscope(:select).select("max(#{quoted_table_name}.id)")
|
|
|
|
|
|
|
|
where(id: max_id.group(:name, :commit_id))
|
|
|
|
end
|
2016-05-16 17:34:42 -04:00
|
|
|
scope :retried, -> { where.not(id: latest) }
|
2016-05-09 17:58:53 -04:00
|
|
|
scope :ordered, -> { order(:name) }
|
2016-04-12 13:57:54 -04:00
|
|
|
scope :ignored, -> { where(allow_failure: true, status: [:failed, :canceled]) }
|
2015-10-06 06:01:16 -04:00
|
|
|
|
|
|
|
state_machine :status, initial: :pending do
|
2016-07-18 08:57:24 -04:00
|
|
|
event :queue do
|
|
|
|
transition skipped: :pending
|
|
|
|
end
|
|
|
|
|
2015-10-06 06:01:16 -04:00
|
|
|
event :run do
|
|
|
|
transition pending: :running
|
|
|
|
end
|
|
|
|
|
|
|
|
event :drop do
|
2015-10-15 09:08:31 -04:00
|
|
|
transition [:pending, :running] => :failed
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
event :success do
|
|
|
|
transition [:pending, :running] => :success
|
|
|
|
end
|
|
|
|
|
|
|
|
event :cancel do
|
|
|
|
transition [:pending, :running] => :canceled
|
|
|
|
end
|
|
|
|
|
2016-02-19 11:38:47 -05:00
|
|
|
after_transition pending: :running do |commit_status|
|
|
|
|
commit_status.update_attributes started_at: Time.now
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
2016-02-19 11:38:47 -05:00
|
|
|
after_transition any => [:success, :failed, :canceled] do |commit_status|
|
|
|
|
commit_status.update_attributes finished_at: Time.now
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
2016-02-19 11:38:47 -05:00
|
|
|
after_transition [:pending, :running] => :success do |commit_status|
|
2016-06-02 10:19:18 -04:00
|
|
|
MergeRequests::MergeWhenBuildSucceedsService.new(commit_status.pipeline.project, nil).trigger(commit_status)
|
2015-11-02 11:27:38 -05:00
|
|
|
end
|
2016-03-08 13:22:50 -05:00
|
|
|
|
|
|
|
after_transition any => :failed do |commit_status|
|
2016-06-02 10:19:18 -04:00
|
|
|
MergeRequests::AddTodoWhenBuildFailsService.new(commit_status.pipeline.project, nil).execute(commit_status)
|
2016-03-08 13:22:50 -05:00
|
|
|
end
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
2016-06-03 07:34:38 -04:00
|
|
|
delegate :sha, :short_sha, to: :pipeline
|
2016-04-16 15:46:26 -04:00
|
|
|
|
|
|
|
def before_sha
|
2016-06-03 07:09:49 -04:00
|
|
|
pipeline.before_sha || Gitlab::Git::BLANK_SHA
|
2016-04-16 15:46:26 -04:00
|
|
|
end
|
2015-10-06 06:01:16 -04:00
|
|
|
|
2016-04-12 13:57:54 -04:00
|
|
|
def self.stages
|
2016-05-09 19:38:25 -04:00
|
|
|
# We group by stage name, but order stages by theirs' index
|
2016-05-14 15:44:35 -04:00
|
|
|
unscoped.from(all, :sg).group('stage').order('max(stage_idx)', 'stage').pluck('sg.stage')
|
2016-04-12 13:57:54 -04:00
|
|
|
end
|
|
|
|
|
2016-05-14 15:44:35 -04:00
|
|
|
def self.stages_status
|
|
|
|
# We execute subquery for each stage to calculate a stage status
|
|
|
|
statuses = unscoped.from(all, :sg).group('stage').pluck('sg.stage', all.where('stage=sg.stage').status_sql)
|
|
|
|
statuses.inject({}) do |h, k|
|
|
|
|
h[k.first] = k.last
|
|
|
|
h
|
|
|
|
end
|
2016-04-12 13:57:54 -04:00
|
|
|
end
|
|
|
|
|
2016-02-19 13:58:43 -05:00
|
|
|
def ignored?
|
2016-03-17 10:54:56 -04:00
|
|
|
allow_failure? && (failed? || canceled?)
|
2016-02-19 13:58:43 -05:00
|
|
|
end
|
|
|
|
|
2015-10-06 06:01:16 -04:00
|
|
|
def duration
|
2016-04-16 16:43:40 -04:00
|
|
|
duration =
|
|
|
|
if started_at && finished_at
|
|
|
|
finished_at - started_at
|
|
|
|
elsif started_at
|
|
|
|
Time.now - started_at
|
|
|
|
end
|
2016-04-18 07:35:43 -04:00
|
|
|
duration
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
2015-10-12 09:45:46 -04:00
|
|
|
|
2016-03-09 10:24:02 -05:00
|
|
|
def stuck?
|
2015-10-12 15:12:31 -04:00
|
|
|
false
|
|
|
|
end
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|