-
Notifications
You must be signed in to change notification settings - Fork 1.1k
fix: clean up settings in the Build #24714
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
Conversation
| // Packaging configuration of the stdlib | ||
| Compile / packageBin / publishArtifact := true, | ||
| Compile / packageDoc / publishArtifact := false, | ||
| Compile / packageSrc / publishArtifact := true, | ||
| // Only publish compilation artifacts, no test artifacts | ||
| Compile / publishArtifact := true, | ||
| Test / publishArtifact := false, |
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.
Can we start to deduplicate all the settings and set them in common settings group? Otherwise it's hard to review (need to expand the views to see to which projects given changes apply) and it's easy to forget about some. All of the published artifacts would use the same values for Compile/Test publishArtifacts, and multiple other settings.
We've had a dedicated publishSetting previously, it might be worthy to restore it.
Duplication of setting was useful during migration and to track changes, but it's hard to maintain
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.
Not with all the backports that are happening at the moment.
Backports #24714 to the 3.8.0-RC4. PR submitted by the release tooling. [skip ci]
Remove
classDirectoryfromscala3-library-*projects and some cleanups of the settings.Closes #24703