Closed
Bug 1150015
Opened 10 years ago
Closed 10 years ago
mozilla-central nightly jobs fail to trigger l10n repacks
Categories
(Release Engineering :: General, defect)
Release Engineering
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: massimo, Assigned: massimo)
References
Details
Attachments
(1 file)
1.64 KB,
patch
|
catlee
:
review+
massimo
:
checked-in+
|
Details | Diff | Splinter Review |
Nightly jobs on mozilla-central should trigger the l10n jobs but they fail with this error:
<type 'exceptions.TypeError'>: unhashable type: 'list'
from: buildbot/steps/trigger.py, line 95 in start
93 for scheduler in self.schedulerNames:
94 scheduler = properties.render(scheduler)
95* if all_schedulers.has_key(scheduler):
96 sch = all_schedulers[scheduler]
in this case, "scheduler" is a list, not a string.
This is caused by https://hg.mozilla.org/build/buildbot-configs/rev/44068ffda891 and it was undetected by our tests.
We should add an assert statement here to prevent this kind of errors.
full log here: http://buildbot-master86.bb.releng.scl3.mozilla.com:8001/builders/OS%20X%2010.7%20mozilla-central%20nightly/builds/7/steps/trigger/logs/err.html#tbend (requires vpn)
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Comment hidden (Legacy TBPL/Treeherder Robot) |
Assignee | ||
Comment 5•10 years ago
|
||
Changes:
* Added an assertion to make checkconfigure fail if we try to append something that is not a string to triggered_nightly_schedulers
* Moved is_l10n_with_mh() check in the if branch; any parameter as 'enable_l10n' and 'l10n_platforms' is not taken in account if we are going to use repacks with mozharness.
* This patch does not create/remove any builders
Attachment #8587394 -
Flags: review?(catlee)
Updated•10 years ago
|
Attachment #8587394 -
Flags: review?(catlee) → review+
Assignee | ||
Comment 6•10 years ago
|
||
Comment on attachment 8587394 [details] [diff] [review]
[buildbotcustom] Bug 1150015 - mozilla-central nightly jobs fail to trigger l10n repacks.patch
Thanks Chris,
landed: https://hg.mozilla.org/build/buildbotcustom/rev/d315c92d5ce3
Attachment #8587394 -
Flags: checked-in+
Comment 7•10 years ago
|
||
In production: https://hg.mozilla.org/build/buildbotcustom/rev/d315c92d5ce3
Assignee | ||
Updated•10 years ago
|
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Updated•7 years ago
|
Component: General Automation → General
You need to log in
before you can comment on or make changes to this bug.
Description
•