Closed
Bug 1047670
Opened 9 years ago
Closed 9 years ago
Try is attempting to trigger periodic non-unified builds
Categories
(Release Engineering :: General, defect)
Release Engineering
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: RyanVM, Assigned: RyanVM)
References
Details
Attachments
(1 file, 1 obsolete file)
1.72 KB,
patch
|
catlee
:
review+
RyanVM
:
checked-in+
|
Details | Diff | Splinter Review |
Bug 1043091 changed the logic for non-unified builds so that they're pinned to the trunk Gecko revision rather than using a fixed blacklist that needs to be updated every time a new release branch is added or removed. However, I forgot to exclude Try from the new logic (which shares the same Gecko rev as trunk), so now we're trying to schedule periodic non-unified builds there as well. If I understand the discussion in #releng correctly, this isn't actively breaking things, it's just a nuisance. I can look at this Monday if nobody beats me to it.
Comment 1•9 years ago
|
||
this is actually causing command queue failures in #buildduty ATM
Assignee | ||
Comment 2•9 years ago
|
||
catlee says this should work (r+ on IRC), but I haven't been able to get test-masters.sh to run locally to confirm.
Comment 3•9 years ago
|
||
fails test-masters :( Traceback (most recent call last): File "/home/catlee/.virtualenvs/buildbot-mozilla-080/local/lib/python2.7/site-packages/buildbot-0.8.2_hg_cd2b74536cbd_production_0.8-py2.7.egg/buildbot/scripts/runner.py", line 1042, in doCheckConfig ConfigLoader(configFileName=configFileName) File "/home/catlee/.virtualenvs/buildbot-mozilla-080/local/lib/python2.7/site-packages/buildbot-0.8.2_hg_cd2b74536cbd_production_0.8-py2.7.egg/buildbot/scripts/checkconfig.py", line 31, in __init__ self.loadConfig(configFile, check_synchronously_only=True) File "/home/catlee/.virtualenvs/buildbot-mozilla-080/local/lib/python2.7/site-packages/buildbot-0.8.2_hg_cd2b74536cbd_production_0.8-py2.7.egg/buildbot/master.py", line 652, in loadConfig exec f in localDict File "/home/catlee/mozilla/buildbot-configs/test-output/bm81-build_scheduler-6MjPhq/master.cfg", line 5, in <module> import config File "/tmp/tmp_1A8Rc/config.py", line 2554, in <module> TypeError: unsupported operand type(s) for +: 'generator' and 'tuple'
Updated•9 years ago
|
Attachment #8466492 -
Flags: review+ → review-
Assignee | ||
Comment 4•9 years ago
|
||
Probably not the prettiest solution, but should work I'd think.
Attachment #8466492 -
Attachment is obsolete: true
Attachment #8466500 -
Flags: review?(catlee)
Comment 5•9 years ago
|
||
Comment on attachment 8466500 [details] [diff] [review] patch v2 Review of attachment 8466500 [details] [diff] [review]: ----------------------------------------------------------------- ::: mozilla/config.py @@ +2555,5 @@ > for pc in branch['platforms'].values(): > if 'enable_nonunified_build' in pc: > pc['enable_nonunified_build'] = False > +# Don't try to schedule non-unified builds on Try either > +for branch in ("try"): this needs to be ("try",) weird python-ism.
Comment 6•9 years ago
|
||
Comment on attachment 8466500 [details] [diff] [review] patch v2 r+ with the comma added. it removes these builders: Builders removed - Android 2.2 Debug try non-unified - Android 2.2 try non-unified - Linux x86-64 try leak test non-unified - Linux x86-64 try non-unified - OS X 10.7 64-bit try leak test non-unified - OS X 10.7 try non-unified - WINNT 5.2 try leak test non-unified - WINNT 5.2 try non-unified
Attachment #8466500 -
Flags: review?(catlee) → review+
Assignee | ||
Comment 7•9 years ago
|
||
Comment on attachment 8466500 [details] [diff] [review] patch v2 Thanks for sticking with me :) https://hg.mozilla.org/build/buildbot-configs/rev/2861502416cd
Attachment #8466500 -
Flags: checked-in+
Comment 8•9 years ago
|
||
Merged to production, reconfig'd try and scheduler masters.
Comment 9•9 years ago
|
||
Deleted dead jobs in command_queues (verified they were all for nonunified jobs first).
Status: ASSIGNED → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 10•9 years ago
|
||
Thanks Nick! Sorry for the hassle - been having to say that a lot lately :(
Updated•5 years ago
|
Component: General Automation → General
You need to log in
before you can comment on or make changes to this bug.
Description
•