Closed thomasflad closed 7 months ago
Looks like a symptom of https://github.com/cirruslabs/tart/issues/567 to me.
You can try a workaround, which is is to attach a block device directly to the VM, see https://github.com/cirruslabs/gitlab-tart-executor/issues/60.
First of all, thank you for your work on the project!
I am currently trying to implement our CI with Gitlab and Tart. We are using Kotlin Multiplatform and building the app with Gradle. So far, so good.
However, I have problems using the Gradle build cache. I assumed that I can use
--builds-dir
and--cache-dir
to store the Gradle cache on the host to have the cache persistent between builds.But I get constantly errors regarding read or write permissions. For example:
Problems reading data from Binary store in /Volumes/My Shared Files/buildsdir/app/.gradle/.tmp/gradle8917629311940141513.bin offset 5524 exists?
My setup looks like this:
.gitlab-ci.yml
config.toml
Does anyone have a running configuration for Gitlab + Tart in combination with Gradle Cache?