Skip to content

Commit

Permalink
Bump Mill 0.12.3 (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
poemonsense authored Nov 28, 2024
1 parent cc8f37a commit 6834b7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.8
0.12.3
7 changes: 3 additions & 4 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* See the Mulan PSL v2 for more details.
***************************************************************************************/

import os.Path
import mill._
import mill.api.PathRef
import scalalib._
Expand Down Expand Up @@ -43,7 +42,7 @@ object design extends Cross[DiffTestModule](ivys.chiselCrossVersions.keys.toSeq)

trait DiffTestModule extends CommonDiffTest {

override def millSourcePath = os.pwd
override def millSourcePath = os.Path(sys.env("MILL_WORKSPACE_ROOT"))

override def scalacOptions = super.scalacOptions() ++
Seq("-Xfatal-warnings", "-deprecation:false", "-unchecked", "-Xlint")
Expand All @@ -53,9 +52,9 @@ trait DiffTestModule extends CommonDiffTest {
object difftest extends Cross[Difftest](ivys.chiselCrossVersions.keys.toSeq)
trait Difftest extends CommonDiffTest { outer =>

override def millSourcePath = os.pwd
override def millSourcePath = os.Path(sys.env("MILL_WORKSPACE_ROOT"))

object test extends SbtModuleTests with TestModule.ScalaTest {
object test extends SbtTests with TestModule.ScalaTest {
override def millSourcePath = outer.millSourcePath
override def sources = T.sources {
super.sources() ++ Seq(PathRef(millSourcePath / "src" / "generator" / s"$crossValue"))
Expand Down

0 comments on commit 6834b7a

Please sign in to comment.