We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01df59b commit 661dddcCopy full SHA for 661dddc
build.mill
@@ -604,7 +604,10 @@ trait MillStableScalaModule extends MillPublishScalaModule with Mima {
604
605
def mimaExcludeAnnotations = Seq("mill.api.internal", "mill.api.experimental")
606
def mimaCheckDirection = CheckDirection.Backward
607
- def skipPreviousVersions: T[Seq[String]] = T(Seq.empty[String])
+ 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
+ }
611
}
612
613
object bridge extends Cross[BridgeModule](compilerBridgeScalaVersions)
0 commit comments