debian-mirror-gitlab/app/models/commit_status.rb

153 lines
3.5 KiB
Ruby
Raw Normal View History

2015-10-24 18:46:33 +05:30
class CommitStatus < ActiveRecord::Base
2016-09-29 09:46:39 +05:30
include HasStatus
2016-06-22 15:30:34 +05:30
include Importable
2016-11-03 12:29:30 +05:30
include AfterCommitQueue
2016-06-02 11:05:42 +05:30
2015-10-24 18:46:33 +05:30
self.table_name = 'ci_builds'
2017-08-17 22:00:37 +05:30
belongs_to :project
2016-09-13 17:45:13 +05:30
belongs_to :pipeline, class_name: 'Ci::Pipeline', foreign_key: :commit_id
2017-08-17 22:00:37 +05:30
belongs_to :auto_canceled_by, class_name: 'Ci::Pipeline'
2015-10-24 18:46:33 +05:30
belongs_to :user
2016-06-22 15:30:34 +05:30
delegate :commit, to: :pipeline
2017-08-17 22:00:37 +05:30
delegate :sha, :short_sha, to: :pipeline
2016-06-22 15:30:34 +05:30
validates :pipeline, presence: true, unless: :importing?
2015-10-24 18:46:33 +05:30
2017-08-17 22:00:37 +05:30
validates :name, presence: true
2015-10-24 18:46:33 +05:30
alias_attribute :author, :user
2017-08-17 22:00:37 +05:30
2016-11-03 12:29:30 +05:30
scope :failed_but_allowed, -> do
where(allow_failure: true, status: [:failed, :canceled])
end
scope :exclude_ignored, -> do
2017-08-17 22:00:37 +05:30
# We want to ignore failed but allowed to fail jobs.
#
# TODO, we also skip ignored optional manual actions.
2016-11-03 12:29:30 +05:30
where("allow_failure = ? OR status IN (?)",
2017-08-17 22:00:37 +05:30
false, all_state_names - [:failed, :canceled, :manual])
2016-11-03 12:29:30 +05:30
end
2017-08-17 22:00:37 +05:30
scope :latest, -> { where(retried: [false, nil]) }
scope :retried, -> { where(retried: true) }
scope :ordered, -> { order(:name) }
scope :latest_ordered, -> { latest.ordered.includes(project: :namespace) }
scope :retried_ordered, -> { retried.ordered.includes(project: :namespace) }
scope :after_stage, -> (index) { where('stage_idx > ?', index) }
2016-09-13 17:45:13 +05:30
state_machine :status do
event :enqueue do
2017-08-17 22:00:37 +05:30
transition [:created, :skipped, :manual] => :pending
2016-09-13 17:45:13 +05:30
end
event :process do
2017-08-17 22:00:37 +05:30
transition [:skipped, :manual] => :created
2016-08-24 12:49:21 +05:30
end
2015-10-24 18:46:33 +05:30
event :run do
transition pending: :running
end
2016-09-13 17:45:13 +05:30
event :skip do
transition [:created, :pending] => :skipped
end
2015-10-24 18:46:33 +05:30
event :drop do
2016-09-13 17:45:13 +05:30
transition [:created, :pending, :running] => :failed
2015-10-24 18:46:33 +05:30
end
event :success do
2016-09-13 17:45:13 +05:30
transition [:created, :pending, :running] => :success
2015-10-24 18:46:33 +05:30
end
event :cancel do
2017-08-17 22:00:37 +05:30
transition [:created, :pending, :running, :manual] => :canceled
2016-09-13 17:45:13 +05:30
end
2017-08-17 22:00:37 +05:30
before_transition created: [:pending, :running] do |commit_status|
commit_status.queued_at = Time.now
2015-10-24 18:46:33 +05:30
end
2017-08-17 22:00:37 +05:30
before_transition [:created, :pending] => :running do |commit_status|
commit_status.started_at = Time.now
2015-10-24 18:46:33 +05:30
end
2017-08-17 22:00:37 +05:30
before_transition any => [:success, :failed, :canceled] do |commit_status|
commit_status.finished_at = Time.now
2015-10-24 18:46:33 +05:30
end
2016-09-13 17:45:13 +05:30
after_transition do |commit_status, transition|
2016-11-03 12:29:30 +05:30
next if transition.loopback?
commit_status.run_after_commit do
pipeline.try do |pipeline|
2017-08-17 22:00:37 +05:30
if complete? || manual?
2016-11-03 12:29:30 +05:30
PipelineProcessWorker.perform_async(pipeline.id)
else
PipelineUpdateWorker.perform_async(pipeline.id)
end
2017-08-17 22:00:37 +05:30
ExpireJobCacheWorker.perform_async(commit_status.id)
2016-11-03 12:29:30 +05:30
end
end
2015-12-23 02:04:40 +05:30
end
2016-06-02 11:05:42 +05:30
after_transition any => :failed do |commit_status|
2016-11-03 12:29:30 +05:30
commit_status.run_after_commit do
MergeRequests::AddTodoWhenBuildFailsService
.new(pipeline.project, nil).execute(self)
end
2016-06-02 11:05:42 +05:30
end
2015-10-24 18:46:33 +05:30
end
2017-08-17 22:00:37 +05:30
def locking_enabled?
status_changed?
end
2015-10-24 18:46:33 +05:30
def before_sha
pipeline.before_sha || Gitlab::Git::BLANK_SHA
2015-10-24 18:46:33 +05:30
end
2016-09-29 09:46:39 +05:30
def group_name
name.gsub(/\d+[\s:\/\\]+\d+\s*/, '').strip
end
2016-11-03 12:29:30 +05:30
def failed_but_allowed?
2016-06-02 11:05:42 +05:30
allow_failure? && (failed? || canceled?)
2016-04-02 18:10:28 +05:30
end
2017-08-17 22:00:37 +05:30
def duration
calculate_duration
end
2016-09-29 09:46:39 +05:30
def playable?
false
end
2017-08-17 22:00:37 +05:30
def stuck?
false
2015-10-24 18:46:33 +05:30
end
2017-08-17 22:00:37 +05:30
def has_trace?
2015-10-24 18:46:33 +05:30
false
end
2017-08-17 22:00:37 +05:30
def auto_canceled?
canceled? && auto_canceled_by_id?
end
def detailed_status(current_user)
Gitlab::Ci::Status::Factory
.new(self, current_user)
.fabricate!
end
def sortable_name
name.split(/(\d+)/).map do |v|
v =~ /\d+/ ? v.to_i : v
end
end
2015-10-24 18:46:33 +05:30
end