Bug 1848842 - Increase APK regression alert's threshold to 1 MB

We added a regression alert for APK size regressions greater than 100 KB (in bug 1838717). This 100 KB threshold is too sensitive, so instead of disabling it entirely, I'd like to increase the threshold to 1 MB, so we will at least catch big surprises like -O2 bug 1838709 (+3 MB) and ICUX bug 1848025 (+2 MB).
fenix/119.0
Chris Peterson 8 months ago committed by mergify[bot]
parent 31573e46fd
commit cc35c2f3ed

@ -107,7 +107,7 @@ open class ApkSizeTask : DefaultTask() {
suite.put("value", getSummarySize(apkSize))
suite.put("lowerIsBetter", true)
suite.put("alertChangeType", "absolute")
suite.put("alertThreshold", 100 * 1024)
suite.put("alertThreshold", 1024 * 1024)
val subtests = JSONArray()
apkSize.forEach { (apk, size) ->

Loading…
Cancel
Save