Skip to content

Commit

Permalink
Restrict Mima to just JVM builds (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi authored Apr 14, 2024
1 parent a6395ed commit 990d507
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ trait MimaCheck extends Mima {
ProblemFilter.exclude[DirectMissingMethodProblem]("geny.ByteData.string"),
ProblemFilter.exclude[DirectMissingMethodProblem]("geny.ByteData#Chunks.string")
)

def mimaReportBinaryIssues() =
if (this.isInstanceOf[ScalaNativeModule] || this.isInstanceOf[ScalaJSModule]) T.command()
else super.mimaReportBinaryIssues()
}


Expand Down

0 comments on commit 990d507

Please sign in to comment.