hoarder
hoarder copied to clipboard
Project for cached compiation plugins for sbt
See #73 for details.
The default behavior of the plugin implies that caches for all SBT projects exist for applying and throws an exception if cache not found. For [multi-project builds](https://www.scala-sbt.org/1.x/docs/Multi-Project.html), it means adding...
On all sbt projects at work we have this issue. We run `sbt test:compile stash` in Gitlab CI job and share the stashed folder as an artifact. On the next...
Mostly in PR validation flow but I thik we can also integrate this with stash workflow.
Hoarder plugin uses a deprecated class `DatatypeConverter` which has been removed from JDK 11
Currently caches, e.g. with `stash`, are scoped to the project name and the major scala version. This should probably be the full scala compiler version and include the version of...
Using https://www.appveyor.com
Base on scala center fork: https://github.com/scalacenter/zinc/blob/sbt-plugin/README.md
The idea is to speed up PR validation builds by reusing compilation artifacts from previous builds. Travis provide [caching mechanism](https://docs.travis-ci.com/user/caching/) that can be use here. I think that by default...