Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: tools/bots/bot_utils.py

Issue 28773003: Changes to annotated step scripts: dart-editor-installer-* builders will build installer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « editor/build/build.py ('k') | tools/mac_build_editor_dmg.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/bot_utils.py
diff --git a/tools/bots/bot_utils.py b/tools/bots/bot_utils.py
index a1a639fd5da380c857abf1539d8f9624267e6045..9f3bccc2dd626aa8360f16279cc7ce2f1a93cf2c 100644
--- a/tools/bots/bot_utils.py
+++ b/tools/bots/bot_utils.py
@@ -76,6 +76,7 @@ class GCSNamer(object):
-{linux,macos,windows}-{ia32,x64}-release.zip
- /sdk/dartsdk-{linux,macos,windows}-{ia32,x64}-release.zip
- /editor/darteditor-{linux,macos,windows}-{ia32,x64}.zip
+ - /editor/darteditor-installer-macos-{ia32,x64}.dmg
- /editor-eclipse-update
/{index.html,features/,plugins/,artifacts.jar,content.jar}
"""
@@ -98,6 +99,10 @@ class GCSNamer(object):
return '/'.join([self.editor_directory(revision),
self.editor_zipfilename(system, arch)])
+ def editor_installer_zipfilepath(self, revision, system, arch, extension):
+ return '/'.join([self.editor_directory(revision),
+ self.editor_installer_zipfilename(system, arch, extension)])
+
def sdk_zipfilepath(self, revision, system, arch, mode):
return '/'.join([self.sdk_directory(revision),
self.sdk_zipfilename(system, arch, mode)])
@@ -139,6 +144,11 @@ class GCSNamer(object):
return 'darteditor-%s-%s.zip' % (
SYSTEM_RENAMES[system], ARCH_RENAMES[arch])
+ def editor_installer_zipfilename(self, system, arch, extension):
+ assert extension in ['dmg']
+ return 'darteditor-installer-%s-%s.%s' % (
+ SYSTEM_RENAMES[system], ARCH_RENAMES[arch], extension)
+
def sdk_zipfilename(self, system, arch, mode):
assert mode in Mode.ALL_MODES
return 'dartsdk-%s-%s-%s.zip' % (
« no previous file with comments | « editor/build/build.py ('k') | tools/mac_build_editor_dmg.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698