summaryrefslogtreecommitdiff
path: root/scripts/lint_templates_bash.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-11-17 11:33:21 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-11-17 11:33:21 +0000
commit7021455bd1ed7b125c55eb1b33c5a01f2bc55ee0 (patch)
tree5bdc2229f5198d516781f8d24eace62fc7e589e9 /scripts/lint_templates_bash.rb
parent185b095e93520f96e9cfc31d9c3e69b498cdab7c (diff)
downloadgitlab-ce-7021455bd1ed7b125c55eb1b33c5a01f2bc55ee0.tar.gz
Add latest changes from gitlab-org/gitlab@15-6-stable-eev15.6.0-rc42
Diffstat (limited to 'scripts/lint_templates_bash.rb')
-rwxr-xr-xscripts/lint_templates_bash.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/lint_templates_bash.rb b/scripts/lint_templates_bash.rb
index 8db9469ecdf..cd36bb629ab 100755
--- a/scripts/lint_templates_bash.rb
+++ b/scripts/lint_templates_bash.rb
@@ -58,6 +58,12 @@ module LintTemplatesBash
def check_template(template)
parsed = process_content(template.content)
+
+ unless parsed.valid?
+ warn "#{template.full_name} is invalid: #{parsed.errors.inspect}"
+ return true
+ end
+
results = parsed.jobs.map do |name, job|
out, success = check_job(job)