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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/pipeline/seed/build/resource_group.rb')
-rw-r--r--lib/gitlab/ci/pipeline/seed/build/resource_group.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/gitlab/ci/pipeline/seed/build/resource_group.rb b/lib/gitlab/ci/pipeline/seed/build/resource_group.rb
deleted file mode 100644
index 100eb1d4084..00000000000
--- a/lib/gitlab/ci/pipeline/seed/build/resource_group.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Ci
- module Pipeline
- module Seed
- class Build
- class ResourceGroup < Seed::Base
- include Gitlab::Utils::StrongMemoize
-
- attr_reader :build, :resource_group_key
-
- def initialize(build, resource_group_key)
- @build = build
- @resource_group_key = resource_group_key
- end
-
- def to_resource
- return unless Feature.enabled?(:ci_resource_group, build.project)
- return unless resource_group_key.present?
-
- resource_group = build.project.resource_groups
- .safe_find_or_create_by(key: expanded_resource_group_key)
-
- resource_group if resource_group.persisted?
- end
-
- private
-
- def expanded_resource_group_key
- strong_memoize(:expanded_resource_group_key) do
- ExpandVariables.expand(resource_group_key, -> { build.simple_variables })
- end
- end
- end
- end
- end
- end
- end
-end