Clone stage_id when retrying a CI/CD job
This commit is contained in:
parent
3ed6c37673
commit
602724fcfc
2 changed files with 2 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
module Ci
|
||||
class RetryBuildService < ::BaseService
|
||||
CLONE_ACCESSORS = %i[pipeline project ref tag options commands name
|
||||
allow_failure stage stage_idx trigger_request
|
||||
allow_failure stage_id stage stage_idx trigger_request
|
||||
yaml_variables when environment coverage_regex
|
||||
description tag_list].freeze
|
||||
|
||||
|
|
|
@ -18,12 +18,11 @@ describe Ci::RetryBuildService, :services do
|
|||
updated_at started_at finished_at queued_at erased_by
|
||||
erased_at auto_canceled_by].freeze
|
||||
|
||||
# TODO, move stage_id accessor to CLONE_ACCESSOR in a follow-up MR.
|
||||
IGNORE_ACCESSORS =
|
||||
%i[type lock_version target_url base_tags
|
||||
commit_id deployments erased_by_id last_deployment project_id
|
||||
runner_id tag_taggings taggings tags trigger_request_id
|
||||
user_id auto_canceled_by_id retried stage_id].freeze
|
||||
user_id auto_canceled_by_id retried].freeze
|
||||
|
||||
shared_examples 'build duplication' do
|
||||
let(:build) do
|
||||
|
|
Loading…
Reference in a new issue