remove no longer applicable rubocop on codeclimate job

pull/9574/head
ulferts 3 years ago
parent d8d349ddc1
commit e085e6781f
No known key found for this signature in database
GPG Key ID: A205708DE1284017
  1. 27
      lib/tasks/dependencies.rake

@ -31,8 +31,7 @@ require 'open3'
namespace :openproject do
namespace :dependencies do
desc 'Updates everything that is updatable automatically especially dependencies'
task update: ['openproject:dependencies:update:gems',
'openproject:dependencies:update:rubocop']
task update: %w[openproject:dependencies:update:gems]
namespace :update do
def parse_capture(capture, &block)
@ -74,30 +73,6 @@ namespace :openproject do
end
end
end
desc 'Update rubocop used on codeclimate to the extend supported'
task :rubocop do
out, _process = Open3.capture3('git',
'ls-remote',
'https://github.com/codeclimate/codeclimate-rubocop',
'channel/rubocop*')
parsed = parse_capture(out) do |line|
matches = line.match(/rubocop-(\d+)-(\d+)(?:-(\d+))?/).to_a
# This version seems to have been a mistake
next if matches[0] == 'rubocop-1-70'
matches[1..3].map(&:to_i) + [matches[0]]
end
new_version = parsed.sort.pop.last
Open3.capture3('sed', '-i.bak', "s/channel: rubocop[-0-9]*/channel: #{new_version}/", '.codeclimate.yml')
Open3.capture3('rm', '.codeclimate.yml.bak')
Open3.capture3('git', 'add', '.codeclimate.yml')
Open3.capture3('git', 'commit', '-m', "use #{new_version} on codeclimate")
end
end
end
end

Loading…
Cancel
Save