debian-mirror-gitlab/scripts/static-analysis

72 lines
1.4 KiB
Plaintext
Raw Normal View History

2017-08-17 22:00:37 +05:30
#!/usr/bin/env ruby
2018-03-17 18:26:18 +05:30
# We don't have auto-loading here
require_relative '../lib/gitlab/popen'
require_relative '../lib/gitlab/popen/runner'
def emit_warnings(static_analysis)
static_analysis.warned_results.each do |result|
puts
2018-03-27 19:54:05 +05:30
puts "**** #{result.cmd.join(' ')} had the following warning(s):"
2018-03-17 18:26:18 +05:30
puts
puts result.stderr
puts
end
end
def emit_errors(static_analysis)
static_analysis.failed_results.each do |result|
puts
2018-03-27 19:54:05 +05:30
puts "**** #{result.cmd.join(' ')} failed with the following error(s):"
2018-03-17 18:26:18 +05:30
puts
puts result.stdout
puts result.stderr
puts
end
end
2017-08-17 22:00:37 +05:30
tasks = [
2018-03-27 19:54:05 +05:30
%w[bin/rake lint:all],
2017-08-17 22:00:37 +05:30
%w[bundle exec license_finder],
%w[yarn run eslint],
2018-12-13 13:39:08 +05:30
%w[yarn run prettier-all],
2018-03-17 18:26:18 +05:30
%w[bundle exec rubocop --parallel],
%w[scripts/lint-conflicts.sh],
%w[scripts/lint-rugged]
2017-08-17 22:00:37 +05:30
]
2018-03-17 18:26:18 +05:30
static_analysis = Gitlab::Popen::Runner.new
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
static_analysis.run(tasks) do |cmd, &run|
puts
puts "$ #{cmd.join(' ')}"
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
result = run.call
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
puts "==> Finished in #{result.duration} seconds"
puts
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
puts
puts '==================================================='
puts
puts
if static_analysis.all_success_and_clean?
2017-08-17 22:00:37 +05:30
puts 'All static analyses passed successfully.'
2018-03-17 18:26:18 +05:30
elsif static_analysis.all_success?
puts 'All static analyses passed successfully, but we have warnings:'
puts
emit_warnings(static_analysis)
exit 2
2017-08-17 22:00:37 +05:30
else
2018-03-17 18:26:18 +05:30
puts 'Some static analyses failed:'
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
emit_warnings(static_analysis)
emit_errors(static_analysis)
2017-08-17 22:00:37 +05:30
exit 1
end