Skip to content

Commit

Permalink
TEMP: skip mima checking because scala 3 introduces too many errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bishabosha committed Sep 20, 2024
1 parent 01df59b commit 661dddc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,10 @@ trait MillStableScalaModule extends MillPublishScalaModule with Mima {

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

object bridge extends Cross[BridgeModule](compilerBridgeScalaVersions)
Expand Down

0 comments on commit 661dddc

Please sign in to comment.