Gradle Build Cache question: - I have a project w...
# caching
a
Gradle Build Cache question: • I have a project with remote build cache. • I run a task that has a local cache miss, but a remote cache hit. • I then disconnect from the remote build cache and re-run the task. Will Gradle be able to re-use the remote cache hit, even though I'm disconnected? Will Gradle copy the remote result into my local cache?
e
Will Gradle copy the remote result into my local cache
Yes, assuming you have local store enabled (the default).
thank you 1