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

Unified Diff: tools/bots/src-tarball.py

Issue 159003002: Add script to build Debian packages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed additional review comments Created 6 years, 10 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 | « no previous file | tools/create_debian_packages.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/src-tarball.py
diff --git a/tools/bots/src-tarball.py b/tools/bots/src-tarball.py
index 3441e932506de512972e15c9abbff9e956a858d9..1c32034fb3eb67d04cf3c9ba77c34b1189c810c5 100644
--- a/tools/bots/src-tarball.py
+++ b/tools/bots/src-tarball.py
@@ -36,6 +36,9 @@ def SrcSteps(build_info):
args = [sys.executable, './tools/create_tarball.py']
print 'Building src tarball'
bot.RunProcess(args)
+ print 'Building Debian packages'
+ args = [sys.executable, './tools/create_debian_packages.py']
+ bot.RunProcess(args)
if __name__ == '__main__':
# We pass in None for build_step to avoid building the sdk.
« no previous file with comments | « no previous file | tools/create_debian_packages.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698