is it possible to clean up old dsyms? Since we upload the dsyms for all of our builds and we build quite a lot each day, we accumulate a lot of unneeded dsyms, especially because dsyms are usually not needed for more than one month. The cleanup command does not seem to delete the dsyms. Is there anything already included or maybe something planned?
Same here. We’ve collected quite a few GBs of (meanwhile pointless) dSYMs over the last two years. Is there any way to automatically delete obsolete dSYMs - e.g. via the API?
cleanup is running with --days 30 every night. That does not affect the debug information files.
However, I was able to write a dirty little script using the API to reads, filter and delete obsolete debug information files. (obsolete = older than six months). We’ll see how that works out…
I suppose something like “delete all DebugInformationFiles that haven’t been used for $x days” would be a safer bet - but currently those access times are not tracked/exposed…