Bug 1249528 - Unify update verify builders r=Callek
authorRail Aliiev <rail@mozilla.com>
Tue, 15 Mar 2016 10:47:12 -0400
changeset 4492 139b15174c5db0c088d9300f8f387ec8d919fa89
parent 4491 ddb55938d8425c190114e9a7b8d878bf2ef9899d
child 4493 40258e329c781f63a28aba559fecde4d3ce5fdc0
child 4803 d4be71324d2a3b395beaa1b1ecb12967ea26892d
push id3619
push userbmo:rail@mozilla.com
push dateMon, 21 Mar 2016 19:22:40 +0000
reviewersCallek
bugs1249528
Bug 1249528 - Unify update verify builders r=Callek MozReview-Commit-ID: Il7QWYMdbOo
process/release.py
--- a/process/release.py
+++ b/process/release.py
@@ -7,25 +7,25 @@ import os
 import re
 import hashlib
 from distutils.version import LooseVersion
 
 from buildbot.process.buildstep import regex_log_evaluator
 from buildbot.scheduler import Scheduler, Dependent
 from buildbot.status.mail import MailNotifier
 from buildbot.steps.trigger import Trigger
-from buildbot.steps.shell import WithProperties
 from buildbot.status.builder import Results
 from buildbot.process.factory import BuildFactory
 
+import buildbotcustom.common
 import release.platforms
 import release.paths
-import buildbotcustom.common
 import build.paths
 import release.info
+reload(buildbotcustom.common)
 reload(release.platforms)
 reload(release.paths)
 reload(build.paths)
 reload(release.info)
 
 from buildbotcustom.status.mail import ChangeNotifier
 from buildbotcustom.misc import (
     generateTestBuilderNames, generateTestBuilder, changeContainsProduct,
@@ -1837,53 +1837,46 @@ def generateReleasePromotionBuilders(bra
         "properties": {
             "branch": branch_config["bouncer_branch"],
             "platform": None,
             "product": product,
         }
     }
     builders.append(bouncer_builder)
 
-    uv_fmt_template = "release-{branch}_{platform}_update_verify_{channel}_{chunk}"
+    uv_fmt_template = "release-{branch}_{product}_{platform}_update_verify"
     for platform in branch_config.get("release_platforms"):
         pf = branch_config["platforms"][platform]
-        t_chunks = branch_config.get("update_verify_chunks", 6)
-        for channel in branch_config.get('release_channels'):
-            for n in range(1, t_chunks + 1):
-                uv_buildername = uv_fmt_template.format(
-                    branch=branch_name,
-                    platform=platform,
-                    channel=channel,
-                    chunk=n,
-                    chunks=t_chunks,
-                    product=branch_config.get("product_name"),
-                    )
-                uv_factory = ScriptFactory(
-                    scriptRepo=tools_repo,
-                    interpreter='bash',
-                    scriptName='scripts/release/updates/chunked-verify.sh',
-                    extra_args=["UNUSED", "UNUSED", str(t_chunks), str(n)],
-                    env=pf['env'],
-                )
+        uv_buildername = uv_fmt_template.format(
+            branch=branch_name,
+            platform=platform,
+            product=branch_config.get("product_name"),
+            )
+        uv_factory = ScriptFactory(
+            scriptRepo=tools_repo,
+            interpreter='bash',
+            scriptName='scripts/release/updates/chunked-verify.sh',
+            env=pf['env'],
+        )
 
-                uv_builder = {
-                    'name': uv_buildername,
-                    'slavenames': pf['slaves'],
-                    'builddir': uv_buildername,
-                    'slavebuilddir': normalizeName(uv_buildername),
-                    'factory': uv_factory,
-                    'category': category_name,
-                    'env': pf['env'],
-                    'properties': {
-                          "branch": branch_name,
-                          "platform": platform,
-                          "product": pf["product_name"],
-                      }
+        uv_builder = {
+            'name': uv_buildername,
+            'slavenames': pf['slaves'],
+            'builddir': uv_buildername,
+            'slavebuilddir': normalizeName(uv_buildername),
+            'factory': uv_factory,
+            'category': category_name,
+            'env': pf['env'],
+            'properties': {
+                    "branch": branch_name,
+                    "platform": platform,
+                    "product": pf["product_name"],
                 }
-                builders.append(uv_builder)
+        }
+        builders.append(uv_builder)
 
     updates_mh_cfg = {
         "script_name": "scripts/release/updates.py",
         "extra_args": [
              "-c",  branch_config['updates_config'],
         ]
     }
     updates_buildername = "release-{branch}-{product}_updates".format(