Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
bug 859464: merge final verify builders together. r=rail
Browse files Browse the repository at this point in the history
  • Loading branch information
bhearsum committed Apr 15, 2013
1 parent a66a9ca commit 954570a
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions process/release.py
Expand Up @@ -1465,10 +1465,9 @@ def getMessageId():
},
})

for platform in releaseConfig.get('verifyConfigs', {}).keys():
if releaseConfig.get('verifyConfigs'):
final_verification_factory = ReleaseFinalVerification(
hgHost=branchConfig['hghost'],
platforms=[platform],
buildToolsRepoPath=tools_repo_path,
verifyConfigs=releaseConfig['verifyConfigs'],
clobberURL=clobberer_url,
Expand All @@ -1477,17 +1476,17 @@ def getMessageId():
)

builders.append({
'name': builderPrefix('final_verification', platform),
'name': builderPrefix('final_verification'),
'slavenames': branchConfig['platforms']['linux']['slaves'] +
branchConfig['platforms']['linux64']['slaves'],
'category': builderPrefix(''),
'builddir': builderPrefix('final_verification', platform),
'slavebuilddir': normalizeName(builderPrefix('fnl_verf', platform), releaseConfig['productName']),
'builddir': builderPrefix('final_verification'),
'slavebuilddir': normalizeName(builderPrefix('fnl_verf'), releaseConfig['productName']),
'factory': final_verification_factory,
'nextSlave': _nextFastSlave,
'env': builder_env,
'properties': {
'slavebuilddir': normalizeName(builderPrefix('fnl_verf', platform), releaseConfig['productName']),
'slavebuilddir': normalizeName(builderPrefix('fnl_verf'), releaseConfig['productName']),
'platform': None,
'branch': 'release-%s' % sourceRepoInfo['name'],
},
Expand Down Expand Up @@ -1727,9 +1726,8 @@ def getMessageId():
if releaseConfig.get('verifyConfigs'):
readyForReleaseUpstreams += post_update_builders
finalVerifyBuilders = []
for platform in releaseConfig['verifyConfigs'].keys():
finalVerifyBuilders.append(
builderPrefix('final_verification', platform))
if releaseConfig.get('verifyConfigs'):
finalVerifyBuilders = [builderPrefix('final_verification')]
readyForReleaseUpstreams += finalVerifyBuilders

mirror_scheduler1 = TriggerBouncerCheck(
Expand Down

0 comments on commit 954570a

Please sign in to comment.