bug 1372412 - reenable osx opt builds on beta. r=catlee draft
authorAki Sasaki <asasaki@mozilla.com>
Mon, 12 Jun 2017 16:23:08 -0700
changeset 592934 f184f09c9840522dc85765090896c5386d06f4d7
parent 592414 07b5b1e2ed4b665b6f01fc8a9d98faad65df5c21
child 632969 2ed68168bfd4481f8a4d02f43795ce588939e946
push id63543
push userasasaki@mozilla.com
push dateMon, 12 Jun 2017 23:23:27 +0000
reviewerscatlee
bugs1372412
milestone55.0a1
bug 1372412 - reenable osx opt builds on beta. r=catlee MozReview-Commit-ID: 97wCvP64neG
taskcluster/taskgraph/target_tasks.py
--- a/taskcluster/taskgraph/target_tasks.py
+++ b/taskcluster/taskgraph/target_tasks.py
@@ -239,17 +239,17 @@ def target_tasks_mozilla_beta(full_task_
 
     def filter(task):
         if not standard_filter(task, parameters):
             return False
         platform = task.attributes.get('build_platform')
         if platform in ('linux64-pgo', 'linux-pgo', 'android-api-15-nightly',
                         'android-x86-nightly'):
             return False
-        if platform in ('linux64', 'linux', 'macosx64'):
+        if platform in ('linux64', 'linux'):
             if task.attributes['build_type'] == 'opt':
                 return False
         # skip l10n, beetmover, balrog
         if task.kind in [
             'balrog', 'beetmover', 'beetmover-checksums', 'beetmover-l10n',
             'checksums-signing', 'nightly-l10n', 'nightly-l10n-signing',
             'push-apk', 'push-apk-breakpoint',
         ]: