Bug 1434587 - Configure absolute threshold for installer size alerts r?jmaher draft
authorIonut Goldan <igoldan@mozilla.com>
Wed, 31 Jan 2018 15:31:37 +0200
changeset 749451 b1f2df9884885562d63ae44fbcad4109eee9b7b4
parent 749389 7b46ef2ae1412b15ed45e7d2367ca491344729f7
push id97408
push userbmo:igoldan@mozilla.com
push dateWed, 31 Jan 2018 15:15:16 +0000
reviewersjmaher
bugs1434587
milestone60.0a1
Bug 1434587 - Configure absolute threshold for installer size alerts r?jmaher MozReview-Commit-ID: Ehrh49ACBC1
testing/mozharness/mozharness/mozilla/building/buildbase.py
--- a/testing/mozharness/mozharness/mozilla/building/buildbase.py
+++ b/testing/mozharness/mozharness/mozilla/building/buildbase.py
@@ -1995,17 +1995,18 @@ or run without that action (ie: --no-{ac
                 "alertChangeType": "absolute",
                 "alertThreshold": (200 * 1024),
                 "subtests": size_measurements
             })
         else:
             yield filter_alert({
                 "name": "installer size",
                 "value": installer_size,
-                "alertThreshold": 1.0,
+                "alertChangeType": "absolute",
+                "alertThreshold": (100 * 1024),
                 "subtests": size_measurements
             })
 
     def _generate_build_stats(self):
         """grab build stats following a compile.
 
         This action handles all statistics from a build: 'count_ctors'
         and then posts to graph server the results.