hey, is there any documentation or context on what...
# community-support
a
hey, is there any documentation or context on what
executionHistory
is used for. this file in my repo has grown to 24 GB 😆 is it safe to delete and itll revert to a smaller size?
v
iirc this is where information about the last run with inputs and outputs and so on is stored to do the up-to-date checks. Basically everything in
.gradle/
can be deleted and Gradle will recreate it if necessary. But some things might break other things that depend on it like configuration cache expecting something to be present you suddenly deleted or somesuch.
a
thanks - it seems to be an ever growing file. not sure why it doesnt just retain or prune entries from time to time. maybe i just have a lot of large builds 😆