2015-10-06 06:01:16 -04:00
|
|
|
class CommitStatus < ActiveRecord::Base
|
2016-08-24 22:55:32 -04:00
|
|
|
include HasStatus
|
2016-06-13 07:34:36 -04:00
|
|
|
include Importable
|
2016-10-07 08:52:30 -04:00
|
|
|
include AfterCommitQueue
|
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-08-11 09:22:35 -04:00
|
|
|
belongs_to :pipeline, class_name: 'Ci::Pipeline', foreign_key: :commit_id
|
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-08-10 10:45:30 -04:00
|
|
|
|
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-10-03 06:33:43 -04:00
|
|
|
|
2016-10-03 06:22:51 -04:00
|
|
|
scope :failed_but_allowed, -> do
|
|
|
|
where(allow_failure: true, status: [:failed, :canceled])
|
|
|
|
end
|
2016-10-03 06:33:43 -04:00
|
|
|
|
2016-10-03 06:22:51 -04:00
|
|
|
scope :exclude_ignored, -> do
|
|
|
|
quoted_when = connection.quote_column_name('when')
|
2016-10-03 06:25:18 -04:00
|
|
|
# We want to ignore failed_but_allowed jobs
|
2016-10-04 12:10:23 -04:00
|
|
|
where("allow_failure = ? OR status IN (?)",
|
|
|
|
false, all_state_names - [:failed, :canceled]).
|
2016-10-03 06:22:51 -04:00
|
|
|
# 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 06:33:43 -04:00
|
|
|
|
2016-08-23 05:27:22 -04:00
|
|
|
scope :latest_ci_stages, -> { latest.ordered.includes(project: :namespace) }
|
|
|
|
scope :retried_ci_stages, -> { retried.ordered.includes(project: :namespace) }
|
2015-10-06 06:01:16 -04:00
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
state_machine :status do
|
2016-08-12 07:57:58 -04:00
|
|
|
event :enqueue do
|
2016-08-11 09:22:35 -04:00
|
|
|
transition [:created, :skipped] => :pending
|
2016-07-18 08:57:24 -04:00
|
|
|
end
|
|
|
|
|
2016-08-18 17:36:54 -04:00
|
|
|
event :process do
|
|
|
|
transition skipped: :created
|
|
|
|
end
|
|
|
|
|
2015-10-06 06:01:16 -04:00
|
|
|
event :run do
|
|
|
|
transition pending: :running
|
|
|
|
end
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
event :skip do
|
|
|
|
transition [:created, :pending] => :skipped
|
|
|
|
end
|
|
|
|
|
2015-10-06 06:01:16 -04:00
|
|
|
event :drop do
|
2016-08-11 09:22:35 -04:00
|
|
|
transition [:created, :pending, :running] => :failed
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
event :success do
|
2016-08-11 09:22:35 -04:00
|
|
|
transition [:created, :pending, :running] => :success
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
event :cancel do
|
2016-08-11 09:22:35 -04:00
|
|
|
transition [:created, :pending, :running] => :canceled
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
after_transition created: [:pending, :running] do |commit_status|
|
|
|
|
commit_status.update_attributes queued_at: Time.now
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
after_transition [:created, :pending] => :running do |commit_status|
|
2016-02-19 11:38:47 -05:00
|
|
|
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-09-19 08:13:08 -04:00
|
|
|
after_transition do |commit_status, transition|
|
2016-10-12 09:21:11 -04:00
|
|
|
next if transition.loopback?
|
2016-10-08 14:42:09 -04:00
|
|
|
|
2016-10-08 14:25:16 -04:00
|
|
|
commit_status.run_after_commit do
|
|
|
|
pipeline.try do |pipeline|
|
|
|
|
if complete?
|
2016-10-12 05:52:54 -04:00
|
|
|
PipelineProcessWorker.perform_async(pipeline.id)
|
2016-10-08 14:25:16 -04:00
|
|
|
else
|
2016-10-12 05:52:54 -04:00
|
|
|
PipelineUpdateWorker.perform_async(pipeline.id)
|
2016-10-08 14:25:16 -04:00
|
|
|
end
|
2016-10-03 10:30:11 -04:00
|
|
|
end
|
2016-09-19 09:03:51 -04:00
|
|
|
end
|
2016-09-19 08:13:08 -04:00
|
|
|
end
|
|
|
|
|
2016-03-08 13:22:50 -05:00
|
|
|
after_transition any => :failed do |commit_status|
|
2016-10-08 14:25:16 -04:00
|
|
|
commit_status.run_after_commit do
|
|
|
|
MergeRequests::AddTodoWhenBuildFailsService
|
|
|
|
.new(pipeline.project, nil).execute(self)
|
|
|
|
end
|
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-09-07 08:52:13 -04:00
|
|
|
def group_name
|
2016-09-14 09:04:12 -04:00
|
|
|
name.gsub(/\d+[\s:\/\\]+\d+\s*/, '').strip
|
2016-09-07 08:52:13 -04:00
|
|
|
end
|
|
|
|
|
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-10-03 06:22:51 -04:00
|
|
|
def failed_but_allowed?
|
2016-03-17 10:54:56 -04:00
|
|
|
allow_failure? && (failed? || canceled?)
|
2016-02-19 13:58:43 -05:00
|
|
|
end
|
|
|
|
|
2016-09-14 09:04:12 -04:00
|
|
|
def playable?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2015-10-06 06:01:16 -04:00
|
|
|
def duration
|
2016-08-10 10:45:30 -04:00
|
|
|
calculate_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
|