Skip to content

Commit a5b3173

Browse files
Dotty version specifiable from the command line
For Dotty CI integration
1 parent e3b1779 commit a5b3173

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.sc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ trait SourcecodeTestModule extends ScalaModule {
6464
}
6565

6666
object sourcecode extends Module {
67-
object jvm extends Cross[JvmSourcecodeModule]("2.11.12", "2.12.10", "2.13.1", "0.21.0-RC1")
67+
val dottyVersion = Option(sys.props("dottyVersion"))
68+
object jvm extends Cross[JvmSourcecodeModule]((List("2.11.12", "2.12.8", "2.13.0") ++ dottyVersion): _*)
6869
class JvmSourcecodeModule(val crossScalaVersion: String)
6970
extends SourcecodeMainModule with ScalaModule with SourcecodeModule {
7071

0 commit comments

Comments
 (0)