Bug 1372588: Add macosx64 devedition build. r=garndt

MozReview-Commit-ID: FhjHHuNsCvv

--HG--
extra : rebase_source : d4ae0116e57b27e13494a96f637bf60f9ed813a1
This commit is contained in:
Wander Lairson Costa 2017-06-15 11:18:31 -03:00
Родитель 350d41d533
Коммит 0f3dbe5269
3 изменённых файлов: 28 добавлений и 1 удалений

Просмотреть файл

@ -43,6 +43,27 @@ macosx64/opt:
secrets: true
tooltool-downloads: internal
macosx64-devedition/opt:
description: "MacOS X Dev Edition x64"
index:
product: firefox
job-name: macosx64-devedition-opt
treeherder:
platform: macosx64-devedition/opt
symbol: tc(B)
tier: 1
worker-type: buildbot-bridge/buildbot-bridge
run:
using: mozharness
actions: [get-secrets build update]
config:
- builds/releng_base_mac_64_builds.py
- balrog/production.py
script: "mozharness/scripts/fx_desktop_build.py"
secrets: true
tooltool-downloads: internal
run-on-projects: ['mozilla-beta',]
macosx64-noopt/debug:
description: "MacOS X x64 No-optimize Debug"
index:

Просмотреть файл

@ -54,6 +54,7 @@ JOB_NAME_WHITELIST = set([
'macosx64-debug',
'macosx64-noopt-debug',
'macosx64-opt',
'macosx64-devedition-opt',
'macosx64-st-an-debug',
'macosx64-st-an-opt',
'shell-haz-debug',

Просмотреть файл

@ -260,8 +260,13 @@ def mozharness_on_buildbot_bridge(config, job, taskdesc):
worker.pop('env', None)
if 'devedition' in job['attributes']['build_platform']:
buildername = 'OS X 10.7 {} devedition build'.format(branch)
else:
buildername = 'OS X 10.7 {} build'.format(branch)
worker.update({
'buildername': 'OS X 10.7 {} build'.format(branch),
'buildername': buildername,
'sourcestamp': {
'branch': branch,
'repository': config.params['head_repository'],