Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken dependencies #352

Closed
wants to merge 5 commits into from
Closed

Conversation

gavindidrichsen
Copy link
Contributor

@gavindidrichsen gavindidrichsen commented Jun 11, 2024

Summary

Recent rubocop updates broke the resource_api's CI:

  puppet-resource_api git:(main) bundle exec rubocop
Error: Property AutoCorrect of cop FactoryBot/CreateList is supposed to be a boolean and contextual is not.
+ set +x
  puppet-resource_api git:(main) 

Although the fix for ruby environments was to change the Gemfile from this:

  gem 'rubocop', '~> 1.48.1', require: false
  gem 'rubocop-rspec', '~> 2.19', require: false

to this:

gem 'rubocop', '~> 1.64.1', require: false
gem 'rubocop-rspec', '~> 3.0', require: false

The same could not be applied to the resource_api's jruby environments. This PR adds a workaround to keep both the ruby and jruby environments passing in CI.

NOTE: I also moved some of the commentary about rubocop from the Gemfile and into separate design decision documents. See below for more information.

For more information

For more information about why the above changes were made, see

Checklist

  • 🟢 Spec tests.
  • 🟢 Acceptance tests.
  • Manually verified.

@gavindidrichsen gavindidrichsen added the maintenance Maintenance (PDK sync and other maintaining commits) label Jun 11, 2024
@gavindidrichsen gavindidrichsen changed the title Update Fix broken dependencies Jun 13, 2024
@gavindidrichsen gavindidrichsen force-pushed the cat_1910_fix_nightlies branch 2 times, most recently from c75b525 to 1d817e8 Compare June 13, 2024 18:18
Without this, a warning appears that multiple new cops are not being checked.  Adding `NewCops: enable` meant 100's of new rubocop warnings appeared.  I fixed some and moved many to the `.rubocop_todo.yml`.

Signed-off-by: Gavin Didrichsen <[email protected]>
Initially, I tried to correct all the new warnings but as the list of corrections was 100+, the CI broke, and the focus of this PR was restoring resource_api to green on CI, I pushed most of the corrections to this to-do list to fix at a later stage.

Signed-off-by: Gavin Didrichsen <[email protected]>
The reasons for the above are explained in the ADR document `doc/adr/0002-split-gemfile-dependencies-by-jruby-and-ruby-engines.md`

Signed-off-by: Gavin Didrichsen <[email protected]>
All of these warnings were fixed in order to correct a rubocop syntax error occuring in jruby but not ruby.  After pinning jruby's (9.3 and 9.4) to an older version of rubocop than ruby's versions (2.7 and 3.2),  the older rubocop did not recognize some newer cops listed in the `rubocop_todo.yml`.  The solution was to auto-correct just these new exceptions.  This is a temporary solution, however, as newer cop warnings may cause the same issue again.

Signed-off-by: Gavin Didrichsen <[email protected]>
@gavindidrichsen gavindidrichsen force-pushed the cat_1910_fix_nightlies branch 2 times, most recently from 14f0e76 to 35bbfa5 Compare June 17, 2024 12:12
@gavindidrichsen gavindidrichsen marked this pull request as ready for review June 17, 2024 12:35
@gavindidrichsen gavindidrichsen requested review from a team as code owners June 17, 2024 12:35
@gavindidrichsen gavindidrichsen force-pushed the cat_1910_fix_nightlies branch 2 times, most recently from 768abd1 to f7fe2e5 Compare June 17, 2024 12:42
Copy link
Member

@david22swan david22swan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Look's ok but would want another pair of eyes before merge due to the ruby split

- 'spec/puppet/resource_api/transport_schema_def_spec.rb'

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Might be good to try and do the safe autocorrects

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @david22swan. I thought about getting this across the line with a green CI and then doing further autocorrects in another PR. The autocorrects I included in this PR were necessary to keep CI green for the jruby environment tests.

@gavindidrichsen gavindidrichsen force-pushed the cat_1910_fix_nightlies branch from 26aed3c to 88d87ce Compare June 17, 2024 15:49
Signed-off-by: Gavin Didrichsen <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
maintenance Maintenance (PDK sync and other maintaining commits)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants