Bug 1300368 - Make autoland trigger periodic builds more frequently
authorWes Kocher <wkocher@mozilla.com>
Sat, 03 Sep 2016 19:25:43 -0700 (2016-09-04)
changeset 14522 8d3743998c94e66fa2df36c01620b146e6435fe2
parent 14521 6fd24999974a13766c9d51f2588b668897446271
child 14523 19f97eb2df5084b0c8ae81f61fa759d9dfbed00f
child 14526 b7ac4249410e2b87510d32bb9255bce7dd317431
push id10180
push userraliiev@mozilla.com
push dateTue, 06 Sep 2016 17:51:31 +0000 (2016-09-06)
bugs1300368
Bug 1300368 - Make autoland trigger periodic builds more frequently MozReview-Commit-ID: 722IfmFWDwY
mozilla/project_branches.py
--- a/mozilla/project_branches.py
+++ b/mozilla/project_branches.py
@@ -4,25 +4,25 @@ PROJECT_BRANCHES = {
     # 'build-system': {},  # Bug 1010674
     'fx-team': {
         'merge_builds': False,
         'enable_perproduct_builds': True,
         'repo_path': 'integration/fx-team',
         'mozconfig_dir': 'mozilla-central',
         'enable_nightly': False,
         'pgo_strategy': 'periodic',
-        'periodic_start_hours': range(2, 24, 3),
+        'periodic_start_hours': range(0, 24, 3),
     },
     'mozilla-inbound': {
         'merge_builds': False,
         'repo_path': 'integration/mozilla-inbound',
         'enable_perproduct_builds': True,
         'mozconfig_dir': 'mozilla-central',
         'pgo_strategy': 'periodic',
-        'periodic_start_hours': range(1, 24, 3),
+        'periodic_start_hours': range(0, 24, 3),
         'talos_suites': {
             'xperf': 1,
         },
         'branch_projects': ['spidermonkey_tier_1'],
     },
     #'services-central': {},  # Bug 1010674
     # 'alder': {},
     # Bug 1252292 - Schedule e10s tests on Ash for all desktop platforms
@@ -61,16 +61,17 @@ PROJECT_BRANCHES = {
         },
     },
     'autoland': {
         'merge_builds': False,
         'repo_path': 'integration/autoland',
         'enable_perproduct_builds': True,
         'mozconfig_dir': 'mozilla-central',
         'pgo_strategy': 'periodic',
+        'periodic_start_hours': range(0, 24, 3),
         'talos_suites': {
             'xperf': 1,
         },
         'branch_projects': ['spidermonkey_tier_1'],
     },
     #'birch': {},  # Bug 1010674
     #'cedar': {},  # Bug 1272005
     'cypress': {