You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you considered having a lightweight version of input for this tool?
I'm thinking of something like all the important stats exported to a text file. Maintaining a bunch of apk snapshots (for comparisons) seems not to make any sense, when I could be maintaining a number of text files for a fraction of the cost.
If the lightweight input was available I could be keeping the text file for every single commit on master (or at least X last of them) and using it as the base for comparisons on my Pull Requests.
The text was updated successfully, but these errors were encountered:
I mentioned to someone about serializing the models to proto which would produce smaller files to retain. But that it was very, very low priority.
That being said, you already should only be keeping the last X of APKs for this tool anyway. The likelihood of someone branching from a commit that's more than a few hundred old is low, and even if that occurs you can fallback to either the oldest APK or the newest APK.
I mentioned to someone about serializing the models to proto which would produce smaller files to retain. But that it was very, very low priority.
Noted.
That being said, you already should only be keeping the last X of APKs for this tool anyway. The likelihood of someone branching from a commit that's more than a few hundred old is low, and even if that occurs you can fallback to either the oldest APK or the newest APK.
The scale of the problem really depends on the APK size. Regardless of the apk storing "issue", uploading and downloading of 35+ MB apks (example of what I'm handling on a daily basis at the moment) would increase the usage of the precious CI time. Especially if there are multiple build types (apks) to be compared per master commit.
Have you considered having a lightweight version of input for this tool?
I'm thinking of something like all the important stats exported to a text file. Maintaining a bunch of apk snapshots (for comparisons) seems not to make any sense, when I could be maintaining a number of text files for a fraction of the cost.
If the lightweight input was available I could be keeping the text file for every single commit on
master
(or at least X last of them) and using it as the base for comparisons on my Pull Requests.The text was updated successfully, but these errors were encountered: