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

Commit

Permalink
Merging from default
Browse files Browse the repository at this point in the history
changeset:   1650:7234ed80e13d
parent:      1646:d046c7611110
user:        Chris AtLee <catlee@mozilla.com>
date:        Mon Jul 04 14:17:07 2011 -0400
summary:     Bug 668425: fix statusdb importing to not use endtimes to match existing builds. r=nthomas

changeset:   1651:1c6ebbd66161
user:        Chris AtLee <catlee@mozilla.com>
date:        Mon Jul 04 16:31:16 2011 -0400
summary:     Bug 668691: don't restrict valgrind to just idle slaves. r=bhearsum

changeset:   1652:018f7a79d057
tag:         tip
user:        Rail Aliev <rail@mozilla.com>
date:        Tue Jul 05 16:17:03 2011 +0300
summary:     Bug 668657 - Updates builder fails on linux64. r=bhearsum

--HG--
branch : production-0.8
  • Loading branch information
ccooper committed Jul 5, 2011
2 parents c4ae5b9 + 9b242b0 commit af1b7fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions bin/update_from_files.py
Expand Up @@ -203,17 +203,14 @@ def updateFromFiles(session, master_url, master_name, builders, last_time, updat
if not build:
continue
starttime = None
endtime = None
if build.started:
starttime = datetime.utcfromtimestamp(build.started)
if build.finished:
endtime = datetime.utcfromtimestamp(build.finished)

q = session.query(model.Build).filter_by(
master_id=master.id,
builder=db_builder,
buildnumber=build.number,
starttime=starttime,
endtime=endtime,
)
db_build = q.first()
if not db_build:
Expand Down
2 changes: 1 addition & 1 deletion misc.py
Expand Up @@ -2956,7 +2956,7 @@ def generateValgrindObjects(config, slaves):
builder = {'name': 'valgrind-%s' % platform,
'builddir': 'valgrind-%s' % platform,
'slavenames': slaves[platform],
'nextSlave': _nextSlowIdleSlave(config['idle_slaves']),
'nextSlave': _nextSlowSlave,
'factory': f,
'category': 'idle',
'env': env,
Expand Down
2 changes: 1 addition & 1 deletion process/release.py
Expand Up @@ -979,7 +979,7 @@ def majorUpdateVerifyBuilders(platform):

builders.append({
'name': builderPrefix('updates'),
'slavenames': branchConfig['platforms']['linux']['slaves'] + branchConfig['platforms']['linux64']['slaves'],
'slavenames': branchConfig['platforms']['linux']['slaves'],
'category': builderPrefix(''),
'builddir': builderPrefix('updates'),
'slavebuilddir': reallyShort(builderPrefix('updates')),
Expand Down

0 comments on commit af1b7fd

Please sign in to comment.