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
path: root/lib/ci
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-08-31 14:48:23 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-08-31 14:48:23 +0300
commit9eabd7230da59708981a9ab5f176beaf97aa6923 (patch)
treef993f48d877b0f059522922f755dbe976be6c846 /lib/ci
parent96a7e1628a895dcc39e6299052cb78e62d59459d (diff)
Remove unused method from CI/CD YAML processor
Diffstat (limited to 'lib/ci')
-rw-r--r--lib/ci/gitlab_ci_yaml_processor.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/ci/gitlab_ci_yaml_processor.rb b/lib/ci/gitlab_ci_yaml_processor.rb
index 72a38e97648..e767ffd2211 100644
--- a/lib/ci/gitlab_ci_yaml_processor.rb
+++ b/lib/ci/gitlab_ci_yaml_processor.rb
@@ -32,12 +32,6 @@ module Ci
end
end
- def builds_for_ref(ref, tag = false, source = nil)
- jobs_for_ref(ref, tag, source).map do |name, _|
- build_attributes(name)
- end
- end
-
def builds_for_stage_and_ref(stage, ref, tag = false, source = nil)
jobs_for_stage_and_ref(stage, ref, tag, source).map do |name, _|
build_attributes(name)