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

Unified Diff: sitescripts/extensions/bin/createNightlies.py

Issue 8851004: Added Opera extension type (Closed)
Patch Set: Created Nov. 13, 2012, 9:46 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 | « .hgsubstate ('k') | sitescripts/extensions/bin/updateDownloadLinks.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sitescripts/extensions/bin/createNightlies.py
===================================================================
--- a/sitescripts/extensions/bin/createNightlies.py
+++ b/sitescripts/extensions/bin/createNightlies.py
@@ -365,16 +365,20 @@ def main():
nightlyConfigFile = get_config().get('extensions', 'nightliesData')
if os.path.exists(nightlyConfigFile):
nightlyConfig.read(nightlyConfigFile)
# build all extensions specified in the configuration file
# and generate changelogs and documentations for each:
data = None
for repo in Configuration.getRepositoryConfigurations(nightlyConfig):
+ # No Opera build automation yet
+ if repo.type == 'opera':
+ continue
+
build = None
try:
build = NightlyBuild(repo)
if build.hasChanges():
build.run()
except Exception, ex:
print >>sys.stderr, "The build for %s failed:" % repo
traceback.print_exc()
« no previous file with comments | « .hgsubstate ('k') | sitescripts/extensions/bin/updateDownloadLinks.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld