Skip to content
Snippets Groups Projects
Commit 5a09f913 authored by Takuya Noguchi's avatar Takuya Noguchi
Browse files

Speed up rubocop CI job

parent 569d54b1
No related branches found
No related tags found
No related merge requests found
......@@ -268,4 +268,6 @@
stage: check
<<: *dedicated-runner
image: ruby:2.3.3
before_script:
- bundle install -j $(nproc) --binstubs --path gems --without default test
script:
......@@ -271,5 +273,5 @@
script:
- bundle exec rake rubocop
- bundle exec rubocop --parallel
except:
- branches@gitlab/omnibus-gitlab
- tags@gitlab/omnibus-gitlab
......
......@@ -5,9 +5,10 @@
10.7.0
- Geo: Increase default WAL standby settings from 30s to 60s
- Internal: Speed up rubocop job (Takuya Noguchi)
10.6.0
- Warn users of stale sprockets manifest file after install 8d4cd46c (David Haltinner)
- Geo: Don't attempt to refresh FDW tables if FDW is not enabled
- Deprecate `/etc/gitlab/skip-auto-migrations` for `/etc/gitlab/skip-auto-reconfigure`
......@@ -8,10 +9,10 @@
10.6.0
- Warn users of stale sprockets manifest file after install 8d4cd46c (David Haltinner)
- Geo: Don't attempt to refresh FDW tables if FDW is not enabled
- Deprecate `/etc/gitlab/skip-auto-migrations` for `/etc/gitlab/skip-auto-reconfigure`
- Update python to 3.4.8
- Update python to 3.4.8 (Takuya Noguchi)
- Update jemalloc to 5.0.1
- Update chef to 13.6.4
- Unsets `RUBYLIB` in `gitlab-rails`, `gitlab-rake`, and `gitlab-ctl` to avoid
......
......@@ -22,6 +22,5 @@
gem 'rspec'
gem 'rake'
gem 'knapsack'
gem 'rubocop'
gem 'docker-api'
gem 'aws-sdk'
......@@ -26,6 +25,10 @@
gem 'docker-api'
gem 'aws-sdk'
gem 'rubocop-rspec'
group :rubocop do
gem 'rubocop'
gem 'rubocop-rspec'
end
group :test do
gem 'byebug'
......
......@@ -3,6 +3,3 @@
require 'knapsack'
Rake.add_rakelib 'lib/gitlab/tasks'
Knapsack.load_tasks
require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment