Do not attempt to migrate legacy pipeline stages

This commit is contained in:
Grzegorz Bizon 2018-01-06 14:44:43 +01:00
parent 3c89252e53
commit 2d2f9e5159
2 changed files with 25 additions and 13 deletions

View File

@ -6,9 +6,9 @@ module Gitlab
module BackgroundMigration
class MigrateBuildStage
def perform(id)
Ci::Build.find_by(id: id).try do |build|
Stage.new(build).tap do |stage|
break if stage.exists?
DatabaseBuild.find_by(id: id).try do |build|
MigratableStage.new(build).tap do |stage|
break if stage.exists? || stage.legacy?
stage.ensure!
stage.migrate_reference!
@ -17,15 +17,15 @@ module Gitlab
end
end
class Ci::Stage < ActiveRecord::Base
class DatabaseStage < ActiveRecord::Base
self.table_name = 'ci_stages'
end
class Ci::Build < ActiveRecord::Base
class DatabaseBuild < ActiveRecord::Base
self.table_name = 'ci_builds'
end
class Stage
class MigratableStage
def initialize(build)
@build = build
end
@ -34,20 +34,29 @@ module Gitlab
@build.reload.stage_id.present?
end
##
# We can have some very old stages that do not have `ci_builds.stage` set.
#
# In that case we just don't migrate such stage.
#
def legacy?
@build.stage.nil?
end
def ensure!
find || create!
end
def find
Ci::Stage.find_by(name: @build.stage,
pipeline_id: @build.commit_id,
project_id: @build.project_id)
DatabaseStage.find_by(name: @build.stage,
pipeline_id: @build.commit_id,
project_id: @build.project_id)
end
def create!
Ci::Stage.create!(name: @build.stage,
pipeline_id: @build.commit_id,
project_id: @build.project_id)
DatabaseStage.create!(name: @build.stage,
pipeline_id: @build.commit_id,
project_id: @build.project_id)
end
def migrate_reference!

View File

@ -29,6 +29,8 @@ describe Gitlab::BackgroundMigration::MigrateBuildStage, :migration, schema: 201
stage_idx: 1, stage: 'test', status: :success)
jobs.create!(id: 5, commit_id: 1, project_id: 123,
stage_idx: 3, stage: 'deploy', status: :pending)
jobs.create!(id: 6, commit_id: 1, project_id: 123,
stage_idx: 3, stage: nil, status: :pending)
end
it 'correctly migrates builds stages' do
@ -40,7 +42,8 @@ describe Gitlab::BackgroundMigration::MigrateBuildStage, :migration, schema: 201
expect(stages.count).to eq 3
expect(stages.all.pluck(:name)).to match_array %w[test build deploy]
expect(jobs.where(stage_id: nil)).to be_empty
expect(jobs.where(stage_id: nil)).to be_one
expect(jobs.find_by(stage_id: nil).id).to eq 6
expect(stages.all.pluck(:status)).to match_array [STATUSES[:success],
STATUSES[:failed],
STATUSES[:pending]]