We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa99ee7 commit c48d3d3Copy full SHA for c48d3d3
1 file changed
jenkins_pipelines/manager_prs/tests_files/rubocop.sh
@@ -5,6 +5,11 @@ rubocop_file="testsuite/.rubocop.yml"
5
if [[ -f "$rubocop_file" ]]; then
6
# Extract the Ruby version from the file
7
ruby_version=$(grep "TargetRubyVersion:" "$rubocop_file" | awk '{print $2}')
8
+ # Temporary skip the check for Ruby 3.3
9
+ if [[ "$ruby_version" == "3.3" ]]; then
10
+ echo "Skipping Rubocop for Ruby 3.3, until sumadockers support it."
11
+ exit 0
12
+ fi
13
if [[ -n "$ruby_version" ]]; then
14
rubocop.ruby"$ruby_version" -v
15
cd testsuite
0 commit comments