Skip to content

Commit 661dddc

Browse files
committed
TEMP: skip mima checking because scala 3 introduces too many errors
1 parent 01df59b commit 661dddc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.mill

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,10 @@ trait MillStableScalaModule extends MillPublishScalaModule with Mima {
604604

605605
def mimaExcludeAnnotations = Seq("mill.api.internal", "mill.api.experimental")
606606
def mimaCheckDirection = CheckDirection.Backward
607-
def skipPreviousVersions: T[Seq[String]] = T(Seq.empty[String])
607+
def skipPreviousVersions: T[Seq[String]] = T {
608+
T.log.info("Skipping mima for previous versions (!!1000s of errors due to Scala 3)")
609+
mimaPreviousVersions() // T(Seq.empty[String])
610+
}
608611
}
609612

610613
object bridge extends Cross[BridgeModule](compilerBridgeScalaVersions)

0 commit comments

Comments
 (0)