-
Notifications
You must be signed in to change notification settings - Fork 266
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/disable auto checks #2853
Fix/disable auto checks #2853
Conversation
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Manifest Files |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this file generated? What is the purpose of it? Sonar is complaining because of it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's the file after running spotlessApply
. I removed this change to keep the focus on the fix in this PR
eafc16e
to
403065a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
403065a
to
ae6a38d
Compare
cb3a5b9
ae6a38d
to
cb3a5b9
Compare
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description
This PR addresses an issue where Checkstyle and Spotless were running automatically during the build process, causing interference and errors. Specifically, Checkstyle was running before the
processResources
task, which meant it was analyzing resources that hadn’t been processed yet. The tasks have now been disabled from running during clean build, while still being available to run manually.Changes:
processResources
task.Commands:
./gradlew clean rskj-core:checkstyleAll
./gradlew clean rskj-core:checkstyleMain
,./gradlew clean rskj-core:checkstyleTest
./gradlew clean rskj-core:spotlessCheck
./gradlew clean rskj-core:spotlessApply
./gradlew clean build -x test
How Has This Been Tested?
Types of changes
Checklist: