Support `mimaReportBinaryIssues / skip`
See original GitHub issueAs in publish / skip := true
and friends, as a way to disable this task.
We’ve currently implemented this in https://github.com/typelevel/sbt-typelevel/pull/117#discussion_r795113203 to help accommodate build matrices with holes in them, where certain modules are not available for certain Scala versions.
Is this something you’re open to? I can try and help with a PR. Thanks!
Issue Analytics
- State:
- Created 2 years ago
- Comments:18 (18 by maintainers)
Top Results From Across the Web
mimaReportBinaryIssues fails on branch 2.12.x #12344 - GitHub
[error] scala-library: Failed binary compatibility check against org.scala-lang:scala-library:2.12.13! Found 15 potential problems (filtered ...
Read more >Contributor guide - Typelevel
If you get stuck on any of these steps, please feel free to ask for help. ... feel free to skip these steps...
Read more >scalatest - Scaladex
ScalaTest. Build Status. ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. Official Website: http://www.scalatest.org/ ...
Read more >pdf - sbt Reference Manual
sbt uses a small number of concepts to support flexible and powerful ... We'll skip over the details of library dependencies until later...
Read more >build.sbt · Gitee 极速下载/Scala
currently, many modules cannot support -Werror; ideally this setting will eventually ... "library/mimaReportBinaryIssues"), // doesn't aggregate.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You can do it for all the default tasks, obviously. And for other keys like
mimaPreviousArtifacts
you can still access them by name (SettingKey[Set[ModuleID]]("mimaPreviousArtifacts")
).Things get harder when their keys use their own types, but it’s possible:
Hehe that’s fair 😉. I think the
+~
wasn’t really needed to make the build work though, only to re-introduce the functionality we previously implemented usingscalaVersion :=
.👍 😉