FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 6a03ec1b authored by Andrew Vella's avatar Andrew Vella
Browse files

build(ci): disable code quality check

Disable code quality check as RuboCop is only compatible with Ruby 2.6
and lower and is needed for code quality check.

see: https://docs.rubocop.org/rubocop/1.74/compatibility.html
parent 93b7a868
No related branches found
No related tags found
1 merge request!12chore: disable code quality check
Pipeline #722666 passed
...@@ -20,6 +20,9 @@ variables: ...@@ -20,6 +20,9 @@ variables:
# repository. This helps ensure that we don't get an explosion of container registry repositories # repository. This helps ensure that we don't get an explosion of container registry repositories
# with a single tag in for every branch which ever existed. # with a single tag in for every branch which ever existed.
CI_APPLICATION_REPOSITORY: $CI_REGISTRY_IMAGE CI_APPLICATION_REPOSITORY: $CI_REGISTRY_IMAGE
# RuboCop currently compatible with Ruby 2.6 https://docs.rubocop.org/rubocop/1.74/compatibility.html
# and below and required for code quality, so disable code quality check for now.
CODE_QUALITY_DISABLED: "1"
pre-commit: pre-commit:
rules: rules:
......
...@@ -6,4 +6,3 @@ ruby '3.4.2' ...@@ -6,4 +6,3 @@ ruby '3.4.2'
gem 'gitlab-triage', '~> 1.44', '>= 1.44.3' gem 'gitlab-triage', '~> 1.44', '>= 1.44.3'
gem 'csv' gem 'csv'
gem 'racc' gem 'racc'
gem 'rubocop', '~> 1.60'
...@@ -14,15 +14,14 @@ GEM ...@@ -14,15 +14,14 @@ GEM
securerandom (>= 0.3) securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5) tzinfo (~> 2.0, >= 2.0.5)
uri (>= 0.13.1) uri (>= 0.13.1)
ast (2.4.2)
base64 (0.2.0) base64 (0.2.0)
benchmark (0.4.0) benchmark (0.4.0)
bigdecimal (3.1.9) bigdecimal (3.1.9)
concurrent-ruby (1.3.5) concurrent-ruby (1.3.5)
connection_pool (2.5.0) connection_pool (2.5.0)
csv (3.3.2) csv (3.3.3)
drb (2.2.1) drb (2.2.1)
gitlab-triage (1.44.3) gitlab-triage (1.44.4)
activesupport (>= 5.1) activesupport (>= 5.1)
globalid (~> 1.0, >= 1.0.1) globalid (~> 1.0, >= 1.0.1)
graphql (< 2.1.0) graphql (< 2.1.0)
...@@ -40,44 +39,18 @@ GEM ...@@ -40,44 +39,18 @@ GEM
multi_xml (>= 0.5.2) multi_xml (>= 0.5.2)
i18n (1.14.7) i18n (1.14.7)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
json (2.10.2)
language_server-protocol (3.17.0.4)
lint_roller (1.1.0)
logger (1.6.6) logger (1.6.6)
mime-types (3.6.1) mime-types (3.6.2)
logger logger
mime-types-data (~> 3.2015) mime-types-data (~> 3.2015)
mime-types-data (3.2025.0304) mime-types-data (3.2025.0318)
minitest (5.25.5) minitest (5.25.5)
multi_xml (0.7.1) multi_xml (0.7.1)
bigdecimal (~> 3.1) bigdecimal (~> 3.1)
parallel (1.26.3)
parser (3.3.7.1)
ast (~> 2.4.1)
racc
racc (1.8.1) racc (1.8.1)
rainbow (3.1.1)
regexp_parser (2.10.0)
rubocop (1.74.0)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.38.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.39.0)
parser (>= 3.3.1.0)
ruby-progressbar (1.13.0)
securerandom (0.4.1) securerandom (0.4.1)
tzinfo (2.0.6) tzinfo (2.0.6)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
unicode-display_width (3.1.4)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
uri (1.0.3) uri (1.0.3)
PLATFORMS PLATFORMS
...@@ -88,7 +61,6 @@ DEPENDENCIES ...@@ -88,7 +61,6 @@ DEPENDENCIES
csv csv
gitlab-triage (~> 1.44, >= 1.44.3) gitlab-triage (~> 1.44, >= 1.44.3)
racc racc
rubocop (~> 1.60)
RUBY VERSION RUBY VERSION
ruby 3.4.2p28 ruby 3.4.2p28
......
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