2015-10-06 06:01:16 -04:00
|
|
|
class CommitStatus < ActiveRecord::Base
|
2016-04-16 15:46:26 -04:00
|
|
|
include Statuseable
|
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-04-11 10:55:40 -04:00
|
|
|
belongs_to :commit, class_name: 'Ci::Commit', touch: true
|
2015-10-06 06:01:16 -04:00
|
|
|
belongs_to :user
|
|
|
|
|
|
|
|
validates :commit, presence: true
|
|
|
|
|
|
|
|
validates_presence_of :name
|
|
|
|
|
2015-10-12 06:15:48 -04:00
|
|
|
alias_attribute :author, :user
|
|
|
|
|
2016-04-11 10:55:40 -04:00
|
|
|
scope :latest, -> { where(id: unscope(:select).select('max(id)').group(:name, :commit_id)) }
|
2015-10-12 10:32:58 -04:00
|
|
|
scope :ordered, -> { order(:ref, :stage_idx, :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
|
|
|
|
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|
|
|
|
|
MergeRequests::MergeWhenBuildSucceedsService.new(commit_status.commit.project, nil).trigger(commit_status)
|
2015-11-02 11:27:38 -05:00
|
|
|
end
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
2016-04-16 15:46:26 -04:00
|
|
|
delegate :sha, :short_sha, to: :commit
|
|
|
|
|
|
|
|
def before_sha
|
|
|
|
commit.before_sha || Gitlab::Git::BLANK_SHA
|
|
|
|
end
|
2015-10-06 06:01:16 -04:00
|
|
|
|
2016-04-12 13:57:54 -04:00
|
|
|
def self.stages
|
|
|
|
order_by = 'max(stage_idx)'
|
|
|
|
group('stage').order(order_by).pluck(:stage, order_by).map(&:first).compact
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.stages_status
|
2016-04-16 16:43:40 -04:00
|
|
|
all.stages.inject({}) do |h, stage|
|
|
|
|
h[stage] = all.where(stage: stage).status
|
|
|
|
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
|