esensar / kotlinx-serialization-msgpack

MsgPack support for kotlinx.serialization -- msgpack.org[kotlinx.serialization]
https://www.ensarsarajcic.com/kotlinx-serialization-msgpack/
MIT License
44 stars 9 forks source link

Resolve gradle metaspace issues #53

Closed esensar closed 3 years ago

esensar commented 3 years ago

Currently gradle runs out of memory often, especially on GitHub Actions where most things aren't cached. This should be resolved to make it easier to start working on the project as well as to make GitHub Actions more reliable.

Current solution with retrying steps make the whole process too long.

esensar commented 3 years ago

Fixed by simply increasing metaspace size in https://github.com/esensar/kotlinx-serialization-msgpack/commit/c8c2ce683e4909dca6dfb50d35f318763a298c9c.

Related dokka issue for reference: https://github.com/Kotlin/dokka/issues/1405