Oh, sorry, I should've been more clear about that. The CI jobs run in a newly spun up docker container, and the directories selected for caching (including the
.konan
directory) are compressed into a zip file for storage until the next CI job runs. If I choose to cache the entire
.konan
directory, including the decompressed dependencies, my PC will have to spend time re-compressing all the dependency files every time, and this takes a pretty substantial amount of time in comparison to just keeping the tarballs. I'm already using the
KONAN_DATA_DIR
environment variable for the alternate solution, which is packing the tarballs into the Docker image when it's built, but it would be way easier for me (and save on my bandwidth) if I could just make the tarballs persist. Does that make sense?