Welcome to mirror list, hosted at ThFree Co, Russian Federation.

create_for_build_service.rb « deployments « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3e2d2edb595f35917f5dcd542d9d6dcd3682c93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module Deployments
  # This class creates a deployment record for a build (a pipeline job).
  class CreateForBuildService
    DeploymentCreationError = Class.new(StandardError)

    def execute(build)
      return unless build.instance_of?(::Ci::Build) && build.persisted_environment.present?

      # TODO: Move all buisness logic in `Seed::Deployment` to this class after
      # `create_deployment_in_separate_transaction` feature flag has been removed.
      # See https://gitlab.com/gitlab-org/gitlab/-/issues/348778
      deployment = ::Gitlab::Ci::Pipeline::Seed::Deployment
        .new(build, build.persisted_environment).to_resource

      return unless deployment

      build.create_deployment!(deployment.attributes)
    rescue ActiveRecord::RecordInvalid => e
      Gitlab::ErrorTracking.track_and_raise_for_dev_exception(
        DeploymentCreationError.new(e.message), build_id: build.id)
    end
  end
end