gitlab-org--gitlab-foss/app/models/commit_status.rb

145 lines
3.5 KiB
Ruby
Raw Normal View History

2015-10-06 10:01:16 +00:00
class CommitStatus < ActiveRecord::Base
2016-08-25 02:55:32 +00:00
include HasStatus
include Importable
include AfterCommitQueue
2016-03-31 17:51:28 +00:00
2015-10-06 10:01:16 +00:00
self.table_name = 'ci_builds'
belongs_to :project, foreign_key: :gl_project_id
belongs_to :pipeline, class_name: 'Ci::Pipeline', foreign_key: :commit_id
2015-10-06 10:01:16 +00:00
belongs_to :user
delegate :commit, to: :pipeline
validates :pipeline, presence: true, unless: :importing?
2015-10-06 10:01:16 +00:00
validates_presence_of :name
2015-10-12 10:15:48 +00:00
alias_attribute :author, :user
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 21:34:42 +00:00
scope :retried, -> { where.not(id: latest) }
scope :ordered, -> { order(:name) }
2016-10-03 10:33:43 +00:00
scope :failed_but_allowed, -> do
where(allow_failure: true, status: [:failed, :canceled])
end
2016-10-03 10:33:43 +00:00
scope :exclude_ignored, -> do
quoted_when = connection.quote_column_name('when')
# We want to ignore failed_but_allowed jobs
where("allow_failure = ? OR status IN (?)",
false, all_state_names - [:failed, :canceled]).
# We want to ignore skipped manual jobs
where("#{quoted_when} <> ? OR status <> ?", 'manual', 'skipped').
# We want to ignore skipped on_failure
where("#{quoted_when} <> ? OR status <> ?", 'on_failure', 'skipped')
end
2016-10-03 10:33:43 +00:00
scope :latest_ci_stages, -> { latest.ordered.includes(project: :namespace) }
scope :retried_ci_stages, -> { retried.ordered.includes(project: :namespace) }
2015-10-06 10:01:16 +00:00
state_machine :status do
2016-08-12 11:57:58 +00:00
event :enqueue do
transition [:created, :skipped] => :pending
end
event :process do
transition skipped: :created
end
2015-10-06 10:01:16 +00:00
event :run do
transition pending: :running
end
event :skip do
transition [:created, :pending] => :skipped
end
2015-10-06 10:01:16 +00:00
event :drop do
transition [:created, :pending, :running] => :failed
2015-10-06 10:01:16 +00:00
end
event :success do
transition [:created, :pending, :running] => :success
2015-10-06 10:01:16 +00:00
end
event :cancel do
transition [:created, :pending, :running] => :canceled
2015-10-06 10:01:16 +00:00
end
2016-10-26 09:34:40 +00:00
before_transition created: [:pending, :running] do |commit_status|
commit_status.queued_at = Time.now
2015-10-06 10:01:16 +00:00
end
2016-10-26 09:34:40 +00:00
before_transition [:created, :pending] => :running do |commit_status|
commit_status.started_at = Time.now
2015-10-06 10:01:16 +00:00
end
2016-10-26 09:34:40 +00:00
before_transition any => [:success, :failed, :canceled] do |commit_status|
commit_status.finished_at = Time.now
2015-10-06 10:01:16 +00:00
end
after_transition do |commit_status, transition|
next if transition.loopback?
commit_status.run_after_commit do
pipeline.try do |pipeline|
if complete?
PipelineProcessWorker.perform_async(pipeline.id)
else
PipelineUpdateWorker.perform_async(pipeline.id)
end
end
end
end
after_transition any => :failed do |commit_status|
commit_status.run_after_commit do
MergeRequests::AddTodoWhenBuildFailsService
.new(pipeline.project, nil).execute(self)
end
end
2015-10-06 10:01:16 +00:00
end
2016-06-03 11:34:38 +00:00
delegate :sha, :short_sha, to: :pipeline
2016-04-16 19:46:26 +00:00
def before_sha
2016-06-03 11:09:49 +00:00
pipeline.before_sha || Gitlab::Git::BLANK_SHA
2016-04-16 19:46:26 +00:00
end
2015-10-06 10:01:16 +00:00
2016-09-07 12:52:13 +00:00
def group_name
2016-09-14 13:04:12 +00:00
name.gsub(/\d+[\s:\/\\]+\d+\s*/, '').strip
2016-09-07 12:52:13 +00:00
end
2016-04-12 17:57:54 +00:00
def self.stages
# We group by stage name, but order stages by theirs' index
unscoped.from(all, :sg).group('stage').order('max(stage_idx)', 'stage').select('sg.stage')
2016-04-12 17:57:54 +00:00
end
def failed_but_allowed?
allow_failure? && (failed? || canceled?)
end
def duration
calculate_duration
end
2016-09-14 13:04:12 +00:00
def playable?
false
end
def stuck?
false
2015-10-06 10:01:16 +00:00
end
2015-10-12 13:45:46 +00:00
def has_trace?
false
end
2015-10-06 10:01:16 +00:00
end