-
Notifications
You must be signed in to change notification settings - Fork 185
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
allow Scala nightlies via system properties #1865
allow Scala nightlies via system properties #1865
Conversation
cc @SethTisue |
081cb67
to
bbc480c
Compare
project/Dependencies.scala
Outdated
@@ -8,7 +8,7 @@ import scala.util.Try | |||
|
|||
object Dependencies { | |||
val scala212 = "2.12.18" | |||
val scala213 = "2.13.12" | |||
val scala213 = sys.props.getOrElse("scala.nightly", "2.13.12") |
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 sure how scala-steward will handle that, but since the bump is manual during the embargo, it does not matter much
bbc480c
to
acbee63
Compare
val scala213 = "2.13.12" | ||
val scala3 = "3.3.1" | ||
val scala212 = sys.props.getOrElse("scala212.nightly", "2.12.18") | ||
val scala213 = sys.props.getOrElse("scala213.nightly", "2.13.12") |
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.
@SethTisue I have suffixed the system property with the scala version to make it possible to tweak any scala version, I assume this is not a problem as it's explicitly forwarded there so it can easily be changed?
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.
yup that's fine
scala/community-build#1673