diff options
Diffstat (limited to 'build.sc')
| -rw-r--r-- | build.sc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -6,7 +6,7 @@ import coursier.maven.MavenRepository import $ivy.`com.lihaoyi::mill-contrib-buildinfo:$MILL_VERSION` import mill.contrib.buildinfo.BuildInfo -object chisel3 extends mill.Cross[chisel3CrossModule]("2.11.12", "2.12.10") +object chisel3 extends mill.Cross[chisel3CrossModule]("2.11.12", "2.12.11") // The following stanza is searched for and used when preparing releases. // Please retain it. @@ -24,7 +24,7 @@ trait CommonModule extends ScalaModule with SbtModule with PublishModule { def publishVersion = "3.3-SNAPSHOT" - // 2.12.10 -> Array("2", "12", "10") -> "12" -> 12 + // 2.12.11 -> Array("2", "12", "10") -> "12" -> 12 protected def majorVersion = crossVersion.split('.')(1).toInt def crossVersion: String @@ -59,7 +59,7 @@ trait CommonModule extends ScalaModule with SbtModule with PublishModule { override def javacOptions = super.javacOptions() ++ javacCrossOptions - private val macroParadise = ivy"org.scalamacros:::paradise:2.1.0" + private val macroParadise = ivy"org.scalamacros:::paradise:2.1.1" override def compileIvyDeps = Agg(macroParadise) @@ -79,7 +79,7 @@ trait CommonModule extends ScalaModule with SbtModule with PublishModule { class chisel3CrossModule(crossVersionValue: String) extends CommonModule with PublishModule with BuildInfo { m => // different scala version shares same sources - // mill use foo/2.11.12 foo/2.12.10 as millSourcePath by default + // mill use foo/2.11.12 foo/2.12.11 as millSourcePath by default override def millSourcePath = super.millSourcePath / os.up / os.up def crossVersion = crossVersionValue @@ -105,7 +105,7 @@ class chisel3CrossModule(crossVersionValue: String) extends CommonModule with Pu def testFrameworks = Seq("org.scalatest.tools.Framework") // a sbt-like testOnly command. - // for example, mill -i "chisel3[2.12.10].test.testOnly" "chiselTests.BitwiseOpsSpec" + // for example, mill -i "chisel3[2.12.11].test.testOnly" "chiselTests.BitwiseOpsSpec" def testOnly(args: String*) = T.command { super.runMain("org.scalatest.run", args: _*) } |
