debian-mirror-gitlab/app/services/ci/retry_build_service.rb

44 lines
1.3 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
module Ci
class RetryBuildService < ::BaseService
CLONE_ACCESSORS = %i[pipeline project ref tag options commands name
2018-03-17 18:26:18 +05:30
allow_failure stage stage_id stage_idx trigger_request
2017-08-17 22:00:37 +05:30
yaml_variables when environment coverage_regex
2018-03-17 18:26:18 +05:30
description tag_list protected].freeze
2017-08-17 22:00:37 +05:30
def execute(build)
reprocess!(build).tap do |new_build|
build.pipeline.mark_as_processable_after_stage(build.stage_idx)
new_build.enqueue!
MergeRequests::AddTodoWhenBuildFailsService
.new(project, current_user)
.close(new_build)
end
end
def reprocess!(build)
unless can?(current_user, :update_build, build)
raise Gitlab::Access::AccessDeniedError
end
attributes = CLONE_ACCESSORS.map do |attribute|
2018-03-17 18:26:18 +05:30
[attribute, build.public_send(attribute)] # rubocop:disable GitlabSecurity/PublicSend
2017-08-17 22:00:37 +05:30
end
attributes.push([:user, current_user])
2018-03-17 18:26:18 +05:30
build.retried = true
2017-08-17 22:00:37 +05:30
Ci::Build.transaction do
# mark all other builds of that name as retried
build.pipeline.builds.latest
.where(name: build.name)
.update_all(retried: true)
project.builds.create!(Hash[attributes])
end
end
end
end