blob: 91e7031744a79ec9012eadf0040ccc12d9e3aa03 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
unless Rails.env.production?
namespace :lint do
task :static_verification_env do
ENV['STATIC_VERIFICATION'] = 'true'
end
desc "GitLab | Lint | Static verification"
task static_verification: %w[
lint:static_verification_env
dev:load
] do
Gitlab::Utils::Override.verify!
end
desc "GitLab | Lint | Lint JavaScript files using ESLint"
task :javascript do
Rake::Task['eslint'].invoke
end
desc "GitLab | Lint | Lint HAML files"
task :haml do
Rake::Task['haml_lint'].invoke
rescue RuntimeError # The haml_lint tasks raise a RuntimeError
exit(1)
end
desc "GitLab | Lint | Run several lint checks"
task :all do
status = 0
tasks = %w[
config_lint
lint:haml
scss_lint
gettext:lint
lint:static_verification
gitlab:sidekiq:all_queues_yml:check
]
if Gitlab.ee?
# This task will fail on CE installations (e.g. gitlab-org/gitlab-foss)
# since it will detect strings in the locale files that do not exist in
# the source files. To work around this we will only enable this task on
# EE installations.
tasks << 'gettext:updated_check'
end
tasks.each do |task|
pid = Process.fork do
puts "*** Running rake task: #{task} ***"
Rake::Task[task].invoke
rescue SystemExit => ex
warn "!!! Rake task #{task} exited:"
raise ex
rescue StandardError, ScriptError => ex
warn "!!! Rake task #{task} raised #{ex.class}:"
raise ex
end
Process.waitpid(pid)
status += $?.exitstatus
end
exit(status)
end
end
end
|