Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: globals/get_browser_versions.py

Issue 5633993739337728: Issue 2432 - Consider broken SeaMonkey Aurora and Nightly builds (Closed)
Patch Set: Created May 18, 2015, 11:45 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: globals/get_browser_versions.py
===================================================================
--- a/globals/get_browser_versions.py
+++ b/globals/get_browser_versions.py
@@ -68,17 +68,22 @@
'aus2-community', origin_build, 'version', **kw)
def get_seamonkey_versions():
- return {
+ versions = {
'current': get_seamonkey_version('2.32', '20150112201917', 'release'),
- 'unreleased': [
- get_seamonkey_version('2.32', '20150101215737', 'beta'),
+ 'unreleased': [get_seamonkey_version('2.32', '20150101215737', 'beta')]
+ }
- # Aurora and Nightly builds for Windows are currently broken.
- # https://bugzilla.mozilla.org/show_bug.cgi?id=1086553
- get_seamonkey_version('2.32', '-', 'aurora', platform='Linux_x86-gcc3'),
- get_seamonkey_version('2.32', '-', 'nightly', platform='Linux_x86-gcc3')
- ]
- }
+ # Aurora and Nightly builds for Windows are permantently broken.
+ # Occasionally, builds for other platforms are broken as well.
+ # https://bugzilla.mozilla.org/show_bug.cgi?id=1086553
+ for channel in ('aurora', 'nightly'):
+ try:
+ version = get_seamonkey_version('2.32', '-', channel, platform='Linux_x86-gcc3')
+ except Exception:
+ continue
+ versions['unreleased'].append(version)
+
+ return versions
BROWSERS['seamonkey'] = get_seamonkey_versions
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld