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/template/gitlab_ci_yml_template.rb')
-rw-r--r--lib/gitlab/template/gitlab_ci_yml_template.rb18
1 files changed, 13 insertions, 5 deletions
diff --git a/lib/gitlab/template/gitlab_ci_yml_template.rb b/lib/gitlab/template/gitlab_ci_yml_template.rb
index 26a9dc9fd38..bb1e9db55fa 100644
--- a/lib/gitlab/template/gitlab_ci_yml_template.rb
+++ b/lib/gitlab/template/gitlab_ci_yml_template.rb
@@ -3,12 +3,16 @@
module Gitlab
module Template
class GitlabCiYmlTemplate < BaseTemplate
+ BASE_EXCLUDED_PATTERNS = [%r{\.latest$}].freeze
+
def content
explanation = "# This file is a template, and might need editing before it works on your project."
[explanation, super].join("\n")
end
class << self
+ include Gitlab::Utils::StrongMemoize
+
def extension
'.gitlab-ci.yml'
end
@@ -22,10 +26,14 @@ module Gitlab
}
end
- def disabled_templates
- %w[
- Verify/Browser-Performance
- ]
+ def excluded_patterns
+ strong_memoize(:excluded_patterns) do
+ BASE_EXCLUDED_PATTERNS + additional_excluded_patterns
+ end
+ end
+
+ def additional_excluded_patterns
+ [%r{Verify/Browser-Performance}]
end
def base_dir
@@ -34,7 +42,7 @@ module Gitlab
def finder(project = nil)
Gitlab::Template::Finders::GlobalTemplateFinder.new(
- self.base_dir, self.extension, self.categories, exclusions: self.disabled_templates
+ self.base_dir, self.extension, self.categories, excluded_patterns: self.excluded_patterns
)
end
end