-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix warnings in sbt build #2022
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
@smarter - seems like the partest command doesn't understand the parameters after these changes. Might need to make it into a key like the |
project/Build.scala
Outdated
val scalaLib = attList | ||
.map(_.data.getAbsolutePath) | ||
.find(_.contains("scala-library")) | ||
.toList.mkString(":") |
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.
You are dropping the dependency of this task on packageAll
here. I guess this was not intentional. You should add
val _ = packageAll.value
@@ -327,7 +325,7 @@ object DottyBuild extends Build { | |||
partestLockFile.createNewFile | |||
partestLockFile.deleteOnExit | |||
}, | |||
runPartestRunner <<= Def.inputTaskDyn { | |||
runPartestRunner := Def.inputTaskDyn { |
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.
If you change this, you also need to add .value
after the closing }
corresponding to the {
on this line. This could explain the problem that you observe.
e5391b1
to
cf6c1d7
Compare
now we just need to migrate to |
cf6c1d7
to
d5fad45
Compare
Thanks @sjrd, @felixmulder , should be good know. |
No description provided.